My Nix Configuration
2
fork

Configure Feed

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

[dishvim] update config

dish 992d6fff a9444ceb

+10 -2
+5 -2
neovim/basics.nix
··· 12 12 pkgs.inotify-tools 13 13 ]; 14 14 diagnostics.enable = true; 15 - options.tabstop = 2; 16 - options.shiftwidth = 2; 15 + options = { 16 + tabstop = 2; 17 + shiftwidth = 2; 18 + foldlevelstart = 99; 19 + }; 17 20 withNodeJs = false; 18 21 withPython3 = false; 19 22 withRuby = false;
+5
neovim/snacks.nix
··· 3 3 utility.snacks-nvim = { 4 4 enable = true; 5 5 setupOpts = { 6 + bigfile = { 7 + enabled = true; 8 + notify = true; 9 + size = 1024 * 1024; 10 + }; 6 11 image.enabled = true; 7 12 indent.enabled = true; 8 13 picker.enabled = true;