summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--common/nixvim.nix6
1 files changed, 4 insertions, 2 deletions
diff --git a/common/nixvim.nix b/common/nixvim.nix
index 81a96ea..53228e0 100644
--- a/common/nixvim.nix
+++ b/common/nixvim.nix
@@ -579,7 +579,10 @@ in
579 enable = true; 579 enable = true;
580 nixvimInjections = true; 580 nixvimInjections = true;
581 581
582 settings.indent.enable = true; 582 settings = {
583 highlight.enable = true;
584 indent.enable = true;
585 };
583 }; 586 };
584 587
585 treesitter-context = { 588 treesitter-context = {
@@ -630,7 +633,6 @@ in
630 633
631 require('highlight-undo').setup() 634 require('highlight-undo').setup()
632 635
633
634 -- For fugitive's :GBrowse 636 -- For fugitive's :GBrowse
635 vim.api.nvim_create_user_command("Browse", function(opts) 637 vim.api.nvim_create_user_command("Browse", function(opts)
636 vim.ui.open(opts.args) 638 vim.ui.open(opts.args)