fix: enable neovim node host to fix tailwind-tools.nvim
This commit is contained in:
parent
e1d106b0b3
commit
0bb33bf587
2 changed files with 6 additions and 0 deletions
|
@ -88,6 +88,8 @@
|
|||
marksman
|
||||
|
||||
libnotify
|
||||
neovim-node-client
|
||||
nodejs
|
||||
];
|
||||
};
|
||||
|
||||
|
@ -217,6 +219,7 @@
|
|||
websocat = "${pkgs.websocat}/bin/websocat";
|
||||
tinymist = "${pkgs.tinymist}/bin/tinymist";
|
||||
texpresso = "${pkgs.texpresso}/bin/texpresso";
|
||||
neovim-node-host = "${pkgs.neovim-node-client}/bin/neovim-node-host";
|
||||
};
|
||||
nixdExtras = {
|
||||
nixpkgs = inputs.nixpkgs.outPath;
|
||||
|
|
3
init.lua
3
init.lua
|
@ -35,6 +35,9 @@ vim.opt.scrolloff = 10
|
|||
|
||||
vim.cmd.colorscheme("oxocarbon")
|
||||
|
||||
vim.g.node_host_prog = nixCats("bin.neovim-node-host")
|
||||
vim.g.loaded_node_provider = nil
|
||||
|
||||
require("nvim-treesitter.configs").setup({
|
||||
ensure_installed = {},
|
||||
sync_install = false,
|
||||
|
|
Loading…
Reference in a new issue