Merge remote-tracking branch 'origin/nixos' into nixos
This commit is contained in:
commit
82fa90d842
22 changed files with 247 additions and 44 deletions
|
|
@ -88,6 +88,7 @@ in
|
|||
promise-async
|
||||
vim-fugitive
|
||||
vim-lion
|
||||
vim-tmux-navigator
|
||||
] ++ pluginsWithConfig;
|
||||
};
|
||||
};
|
||||
|
|
|
|||
|
|
@ -26,14 +26,6 @@ require("which-key").register({
|
|||
},
|
||||
}, { prefix = "<leader>" })
|
||||
|
||||
-- fast window move
|
||||
require("which-key").register({
|
||||
["<C-h>"] = { "<C-w>h", "Move window left" },
|
||||
["<C-j>"] = { "<C-w>j", "Move window down" },
|
||||
["<C-k>"] = { "<C-w>k", "Move window up" },
|
||||
["<C-l>"] = { "<C-w>l", "Move window right" },
|
||||
})
|
||||
|
||||
-- tab
|
||||
require("which-key").register({
|
||||
["<tab>"] = {
|
||||
|
|
|
|||
|
|
@ -2,5 +2,4 @@ require("nvim-autopairs").setup()
|
|||
|
||||
-- If you want insert `(` after select function or method item
|
||||
local cmp_autopairs = require("nvim-autopairs.completion.cmp")
|
||||
local cmp = require("cmp")
|
||||
cmp.event:on("confirm_done", cmp_autopairs.on_confirm_done())
|
||||
require("cmp").event:on("confirm_done", cmp_autopairs.on_confirm_done())
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue