This commit is contained in:
fqbn207
2025-01-22 14:30:41 +01:00
parent 67f83f16ba
commit 5ca4303d32
6 changed files with 32 additions and 15 deletions

View File

@ -173,6 +173,7 @@
htop htop
btop btop
kew kew
jq
# dev # dev
rustup rustup

View File

@ -18,12 +18,11 @@
completeopt = "menu,menuone,noinsert,noselect"; completeopt = "menu,menuone,noinsert,noselect";
}; };
}; };
sourcePlugins = [ #sourcePlugins = [
"crates-nvim" # "crates-nvim"
"cmp-path" # "cmp-nvim-lsp"
"cmp-nvim-lsp" # "rustaceanvim"
"rustaceanvim" #];
];
}; };
}; };
}; };

View File

@ -10,6 +10,7 @@
./cmp.nix ./cmp.nix
./lualine.nix ./lualine.nix
./snip.nix ./snip.nix
./extraPlugins.nix
]; ];
programs.nvf = { programs.nvf = {
enable = true; enable = true;

View File

@ -0,0 +1,11 @@
{ pkgs, lib, ... }:
{
programs.nvf.settings.vim = {
extraPlugins = with pkgs; {
neocord = {
package = vimPlugins.neocord;
setup = "require('neocord').setup {}";
};
};
};
}

View File

@ -13,12 +13,16 @@
}; };
python = { python = {
enable = true; enable = true;
lsp.enable = true;
treesitter.enable = true;
}; };
go = { go = {
enable = true; enable = true;
lsp.enable = true;
treesitter.enable = true;
}; };
lua = { lua = {
enable = true; enable = true;
}; };
rust = { rust = {
enable = true; enable = true;

View File

@ -4,15 +4,16 @@
snippets = { snippets = {
luasnip = { luasnip = {
enable = true; enable = true;
providers = [ loaders = "require('luasnip.loaders.from_snipmate').lazy_load()";
"friendly-snippets" #providers = [
"crates-nvim" # "friendly-snippets"
"lspkind" # "crates-nvim"
"lspsaga" # "lspkind"
"rustaceanvim" # "lspsaga"
]; # "rustaceanvim"
#];
setupOpts = { setupOpts = {
enable_autosnippets = true; enable_autosnippets = false;
}; };
}; };
}; };