Personal Nix setup
0
fork

Configure Feed

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

Add zig to nvim

+6
+1
modules/nvim/default.nix
··· 20 20 ripgrep = '${pkgs.ripgrep}/bin/rg', 21 21 rustanalyzer = '${pkgs.rust-analyzer}/bin/rust-analyzer', 22 22 zls = '${pkgs.zls}/bin/zls', 23 + zig = '${pkgs.zig}/bin/zig', 23 24 } 24 25 25 26 hardline_colors = ${mkVimHardlineColors colors}
+5
modules/nvim/init.lua
··· 500 500 lsp_setup('zls', { 501 501 cmd = { nix_bins.zls }, 502 502 flags = { debounce_text_changes = 200 }, 503 + settings = { 504 + zls = { 505 + zig_exe_path = nix_bins.zig, 506 + }, 507 + } 503 508 }) 504 509 505 510 -- treesitter