My Nix Configuration
2
fork

Configure Feed

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

[dishvim] add fish-lsp to fish language config

dish b49fd519 767463a5

+9
+9
neovim/languages/fish.nix
··· 18 18 args = [ "--no-execute" ]; 19 19 }; 20 20 }; 21 + lsp.servers.fish-lsp = { 22 + enable = true; 23 + cmd = [ 24 + (lib.meta.getExe pkgs.fish-lsp) 25 + "start" 26 + ]; 27 + filetypes = [ "fish" ]; 28 + root_markers = [ ".git" ]; 29 + }; 21 30 }; 22 31 }