Skip to content

Commit

Permalink
feat(vim): Add Treesitter
Browse files Browse the repository at this point in the history
  • Loading branch information
edmundmiller committed Aug 26, 2024
1 parent 72ccb67 commit 7fcc744
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion modules/editors/vim.nix
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,8 @@ in
clipboard.register = "unnamedplus";
vimAlias = true;
editorconfig.enable = true;
globals.mapleader = "SPC";
globals.mapleader = "<Space>";
# filetype = { "markdown", "Avante" };
plugins = {
copilot-chat.enable = true;
copilot-lua.enable = true;
Expand All @@ -42,6 +43,9 @@ in
neoscroll.enable = true;
neotest.enable = true;
telescope.enable = true;
treesitter.enable = true;
treesitter.folding = true;
treesitter-textobjects.enable = true;
surround.enable = true;
todo-comments.enable = true;
};
Expand Down

0 comments on commit 7fcc744

Please sign in to comment.