neovim: add surround plugin
This commit is contained in:
parent
04c505a149
commit
070501ce10
1 changed files with 5 additions and 0 deletions
|
@ -34,6 +34,11 @@ in
|
||||||
# Enable fast navigation between windows
|
# Enable fast navigation between windows
|
||||||
vim.keymap.set = map (k: { mode = "n"; lhs = ctrl k; rhs = "${ctrl "w"}${k}"; }) [ "h" "l" "j" "k" ];
|
vim.keymap.set = map (k: { mode = "n"; lhs = ctrl k; rhs = "${ctrl "w"}${k}"; }) [ "h" "l" "j" "k" ];
|
||||||
|
|
||||||
|
plugin.nvim-surround = {
|
||||||
|
enable = true;
|
||||||
|
setupSettings = {};
|
||||||
|
};
|
||||||
|
|
||||||
plugin.nvim-treesitter-textobjects.enable = true;
|
plugin.nvim-treesitter-textobjects.enable = true;
|
||||||
|
|
||||||
plugins.style.nvim-treesitter = {
|
plugins.style.nvim-treesitter = {
|
||||||
|
|
Loading…
Reference in a new issue