My Nix Configuration
2
fork

Configure Feed

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

[neovim] update

dish 44883763 c1f15d95

+11 -1
+1
neovim/languages/python.nix
··· 6 6 format.type = [ "ruff" ]; 7 7 lsp.enable = true; 8 8 lsp.servers = [ "pyrefly" ]; 9 + extraDiagnostics.enable = false; 9 10 }; 10 11 }; 11 12 };
+10 -1
neovim/plugins/snacks.nix
··· 17 17 image.enabled = true; 18 18 picker = { 19 19 enabled = true; 20 - sources.explorer.layout.layout.width = 20; 20 + sources = { 21 + explorer.layout = { 22 + auto_hide = [ "input" ]; 23 + layout.width = 20; 24 + }; 25 + lsp_symbols.layout = { 26 + auto_hide = [ "input" ]; 27 + layout.width = 25; 28 + }; 29 + }; 21 30 }; 22 31 quickfile.enabled = true; 23 32 };