4 files changed,
5 insertions(+),
12 deletions(-)
M
lua/keymapings.lua
@@ -43,6 +43,8 @@ nmap("<leader>sT", "<cmd>Telescope grep_string<cr>")
nmap("<leader>sp", "<cmd>Telescope projects<cr>") nmap("<leader>sr", "<cmd>Telescope oldfiles<cr>") nmap("<leader>sb", "<cmd>Telescope git_branches<cr>") +nmap("<leader>sf", "<cmd>Telescope git_files<cr>") +nmap("<leader>ss", "<cmd>Telescope git_status<cr>") nmap("<leader>sc", "<cmd>Telescope git_commits<cr>") nmap("<leader>sk", "<cmd>Telescope keymaps<cr>")
M
lua/plugin.lua
@@ -4,6 +4,7 @@ use "nvim-lua/plenary.nvim"
use "catppuccin/nvim" use "kyazdani42/nvim-web-devicons" + use { "~/code/gopher.nvim", ft = "go" } use { "dstein64/vim-startuptime", cmd = "StartupTime" } use { "tpope/vim-surround", keys = { "c", "d", "y" } }@@ -82,14 +83,6 @@ { "nvim-telescope/telescope-dap.nvim", after = "nvim-dap", config = [[ require("telescope").load_extension "dap" ]] },
}, config = function() require("plugin.dap").setup() - end, - } - - use { - "ray-x/go.nvim", - ft = { "go", "gomod" }, - config = function() - require("go").setup { gofmt = "gpfumpt" } end, }
M
lua/plugin/nvimtree.lua
@@ -20,7 +20,7 @@ },
}, filters = { dotfiles = true, - custom = { ".git", "node_modules", "__pycache__", "env", ".bin" }, + custom = { ".git", "node_modules", "__pycache__", "vendor", "env", ".bin" }, }, view = { width = 30,
M
lua/plugin/telescope.lua
@@ -19,7 +19,7 @@ prompt_position = "top",
horizontal = { mirror = false }, vertical = { mirror = false }, }, - file_ignore_patterns = { ".git", "node_modules", "__pycache__", "target", "env", ".bin" }, + file_ignore_patterns = { ".git", "node_modules", "__pycache__", "target", "vendor", "env", ".bin" }, path_display = { shorten = 5 }, winblend = 0, border = {},@@ -35,8 +35,6 @@ i = {
["<C-j>"] = actions.move_selection_next, ["<C-k>"] = actions.move_selection_previous, ["<C-u>"] = false, - - ["<C-h>"] = "which_key", }, n = { ["<C-j>"] = actions.move_selection_next,