diff options
| author | seth <[email protected]> | 2022-09-01 08:51:22 -0400 |
|---|---|---|
| committer | seth <[email protected]> | 2022-09-01 09:46:08 -0400 |
| commit | a3f264ae81ea7596f72b7d06fe577ff2dee2dd91 (patch) | |
| tree | cf1ee9b6108aa5d9413dc22583df1196c50a0010 /.config/nvim/lua/getchoo/lsp/keymap.lua | |
| parent | 59b844443f5a5c867a98f8b89dce5b9c6ce3783f (diff) | |
separate neovim plugin configs more
Diffstat (limited to '.config/nvim/lua/getchoo/lsp/keymap.lua')
| -rw-r--r-- | .config/nvim/lua/getchoo/lsp/keymap.lua | 19 |
1 files changed, 0 insertions, 19 deletions
diff --git a/.config/nvim/lua/getchoo/lsp/keymap.lua b/.config/nvim/lua/getchoo/lsp/keymap.lua index 0df41d2..0a93db8 100644 --- a/.config/nvim/lua/getchoo/lsp/keymap.lua +++ b/.config/nvim/lua/getchoo/lsp/keymap.lua @@ -16,25 +16,6 @@ set("n", "<space>f", function() vim.cmd("Telescope") end) -set("n", "<leader>t", function() - vim.cmd("NvimTreeToggle") -end) - set("n", "<space>t", function() vim.cmd("TroubleToggle") end) - -for i = 1, 9 do - set("n", "<leader>" .. i, function() - local cmd = "BufferGoto " .. i - vim.cmd(cmd) - end) -end - -set("n", "<leader>p", function() - vim.cmd("BufferPick") -end) - -set("n", "<leader>q", function() - vim.cmd("BufferClose") -end) |
