My Nix Configuration
2
fork

Configure Feed

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

[dishvim] more refactoring

dish c177ef1c 19702abe

+10 -1
+1
neovim/basics.nix
··· 24 24 }; 25 25 lineNumberMode = "relNumber"; 26 26 mini.icons.enable = true; 27 + mini.trailspace.enable = true; 27 28 theme = { 28 29 enable = true; 29 30 name = "catppuccin";
+1 -1
neovim/dishvim.nix
··· 15 15 ./languages/toml.nix 16 16 ./lualine.nix 17 17 ./misc/cursor-restore.nix 18 + ./plugins/trouble.nix 18 19 # keep-sorted end 19 20 ]; 20 21 config.vim = { ··· 34 35 formatOnSave = true; 35 36 harper-ls.enable = true; 36 37 mappings.renameSymbol = "lr"; 37 - trouble.enable = true; 38 38 }; 39 39 # Languages 40 40 languages = {
+8
neovim/plugins/trouble.nix
··· 1 + { 2 + config.vim = { 3 + lsp.trouble = { 4 + enable = true; 5 + mappings.documentDiagnostics = "xx"; 6 + }; 7 + }; 8 + }