chore: resolve warning messages
Updated program option definitions to resolve build warnings
This commit is contained in:
parent
908db14e1c
commit
33edc82a6b
6 changed files with 12 additions and 9 deletions
|
@ -12,7 +12,7 @@
|
|||
};
|
||||
qt = {
|
||||
enable = true;
|
||||
platformTheme = "gtk";
|
||||
platformTheme.name = "gtk";
|
||||
style = {
|
||||
package = pkgs.libsForQt5.breeze-qt5;
|
||||
name = "breeze";
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
plugins.auto-save = {
|
||||
enable = true;
|
||||
enableAutoSave = true;
|
||||
settings.enabled = true;
|
||||
};
|
||||
}
|
||||
|
|
|
@ -23,6 +23,7 @@
|
|||
./which_key.nix
|
||||
./wilder.nix
|
||||
./virt-column.nix
|
||||
./devicons.nix
|
||||
];
|
||||
enable = true;
|
||||
enableMan = true;
|
||||
|
|
3
home-manager/stvnliu/nixvim/devicons.nix
Normal file
3
home-manager/stvnliu/nixvim/devicons.nix
Normal file
|
@ -0,0 +1,3 @@
|
|||
{
|
||||
plugins.web-devicons.enable = true;
|
||||
}
|
|
@ -8,13 +8,14 @@
|
|||
clangd.enable = true;
|
||||
fsautocomplete.enable = true;
|
||||
gopls.enable = true;
|
||||
nil_ls.enable = true;
|
||||
nil-ls.enable = true;
|
||||
#nixd.enable = true;
|
||||
rust-analyzer = {
|
||||
enable = true;
|
||||
installRustc = true;
|
||||
installCargo = true;
|
||||
};
|
||||
tsserver.enable = true;
|
||||
ts-ls.enable = true;
|
||||
};
|
||||
keymaps.lspBuf = {
|
||||
"gd" = "definition";
|
||||
|
@ -24,10 +25,8 @@
|
|||
"K" = "hover";
|
||||
};
|
||||
};
|
||||
lsp-lines = {
|
||||
enable = true;
|
||||
currentLine = true;
|
||||
};
|
||||
lsp-lines.enable = true;
|
||||
rust-tools.enable = true;
|
||||
};
|
||||
diagnostics.virtual_lines.only_current_line = true;
|
||||
}
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
enable = true;
|
||||
nixGrammars = true;
|
||||
nixvimInjections = true; # enables language injection in nixvim
|
||||
indent = true;
|
||||
settings.indent.enable = true;
|
||||
};
|
||||
treesitter-context.enable = true;
|
||||
rainbow-delimiters.enable = true;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue