My Nix Configuration
2
fork

Configure Feed

Select the types of activity you want to include in your feed.

[neovim] blink.indent -> snacks.indent

dish cd33736c 8ef2f709

+18 -18
-1
neovim/basics.nix
··· 3 3 imports = [ 4 4 # keep-sorted start 5 5 ./plugins/blink-cmp.nix 6 - ./plugins/blink-indent.nix 7 6 ./plugins/colorizer.nix 8 7 ./plugins/lualine.nix 9 8 ./plugins/nvim-lint.nix
+18 -1
neovim/plugins/snacks.nix
··· 8 8 notify = true; 9 9 size = 1024 * 1024; 10 10 }; 11 + explorer = { 12 + enabled = true; 13 + replace_netrw = true; 14 + trash = false; 15 + }; 16 + indent.enabled = true; 11 17 image.enabled = true; 12 - picker.enabled = true; 18 + picker = { 19 + enabled = true; 20 + sources.explorer.layout.layout.width = 20; 21 + }; 13 22 quickfile.enabled = true; 14 23 }; 15 24 }; ··· 28 37 action = "function() Snacks.picker.git_files() end"; 29 38 lua = true; 30 39 desc = "Find Git Files"; 40 + silent = true; 41 + } 42 + { 43 + key = "<Leader>fe"; 44 + mode = "n"; 45 + action = "function() Snacks.picker.explorer() end"; 46 + lua = true; 47 + desc = "File Explorer"; 31 48 silent = true; 32 49 } 33 50 ];