NVim: formatting

This commit is contained in:
Filippo Berto 2024-01-16 10:50:12 +01:00
parent d17e08f173
commit 4609ec520e
No known key found for this signature in database
GPG key ID: FE98AE5EC52B1056

View file

@ -21,9 +21,7 @@ let vp = pkgs.vimPlugins; in {
{
plugin = vp.nvim-surround;
type = "lua";
config = ''
require("nvim-surround").setup({})
'';
config = ''require("nvim-surround").setup({})'';
}
vp.telescope-fzf-native-nvim
@ -66,7 +64,8 @@ let vp = pkgs.vimPlugins; in {
plugin = vp.undotree;
type = "lua";
config = ''
vim.keymap.set({ "n", "v" }, "<leader>u", vim.cmd.UndotreeToggle, { desc = "Toggle undo tree" })
vim.keymap.set({ "n", "v" }, "<leader>u",
vim.cmd.UndotreeToggle, { desc = "Toggle undo tree" })
'';
}