nvim: minor plugin config cleanup
This commit is contained in:
parent
c266045624
commit
ed1b6d84e3
4 changed files with 3 additions and 4 deletions
|
@ -29,7 +29,7 @@ lib.mkIf (lib.elem "nvim::blink" config.machine.pkgs) {
|
||||||
};
|
};
|
||||||
|
|
||||||
fuzzy = {
|
fuzzy = {
|
||||||
implementation = "prefer_rust";
|
implementation = "rust";
|
||||||
};
|
};
|
||||||
|
|
||||||
# Default list of enabled providers defined so that you can extend it
|
# Default list of enabled providers defined so that you can extend it
|
||||||
|
|
|
@ -11,7 +11,7 @@ lib.mkIf (lib.elem "nvim::go" config.machine.pkgs) {
|
||||||
dir = (vPlug: vPlug.go-nvim);
|
dir = (vPlug: vPlug.go-nvim);
|
||||||
dependencies = (
|
dependencies = (
|
||||||
vPlug: with vPlug; [
|
vPlug: with vPlug; [
|
||||||
nvim-treesitter.withAllGrammars
|
"nvim-treesitter"
|
||||||
nvim-lspconfig
|
nvim-lspconfig
|
||||||
]
|
]
|
||||||
);
|
);
|
||||||
|
|
|
@ -11,6 +11,5 @@ lib.optionalAttrs (lib.elem "nvim::lsp::bash" config.machine.pkgs) {
|
||||||
"${pkgs.nodePackages.bash-language-server}/bin/bash-language-server"
|
"${pkgs.nodePackages.bash-language-server}/bin/bash-language-server"
|
||||||
"start"
|
"start"
|
||||||
];
|
];
|
||||||
filetypes = [ "sh" ];
|
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
@ -8,7 +8,7 @@ lib.mkIf (lib.elem "nvim::lualine" config.machine.pkgs) {
|
||||||
programs.nvim-lazy.lazyPlugins = [
|
programs.nvim-lazy.lazyPlugins = [
|
||||||
{
|
{
|
||||||
dir = vPlug: vPlug.lualine-nvim;
|
dir = vPlug: vPlug.lualine-nvim;
|
||||||
dependencies = [ "nvim-web-devicons" ];
|
dependencies = (vPlug: with vPlug; [ nvim-web-devicons ]);
|
||||||
opts = {
|
opts = {
|
||||||
options = {
|
options = {
|
||||||
icons_enabled = true;
|
icons_enabled = true;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue