diff --git a/home/nixvim/default.nix b/home/nixvim/default.nix index f0d2e99..2b4e354 100644 --- a/home/nixvim/default.nix +++ b/home/nixvim/default.nix @@ -163,7 +163,7 @@ plugins.fzf-lua = { enable = true; keymaps = { - "ff" = "git_files"; + "ff" = "files"; "fg" = "live_grep"; }; }; @@ -174,6 +174,11 @@ window.width = 30; }; + plugins.gitsigns = { + enable = true; + settings.current_line_blame = true; + }; + plugins.cmp-buffer.enable = true; plugins.cmp-emoji.enable = true; plugins.cmp-nvim-lsp.enable = true; @@ -183,6 +188,7 @@ plugins.nvim-autopairs.enable = true; plugins.rainbow-delimiters.enable = true; plugins.web-devicons.enable = true; - plugins.gitsigns.enable = true; + plugins.auto-save.enable = true; + plugins.indent-blankline.enable = true; }; }