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 = {
|
qt = {
|
||||||
enable = true;
|
enable = true;
|
||||||
platformTheme = "gtk";
|
platformTheme.name = "gtk";
|
||||||
style = {
|
style = {
|
||||||
package = pkgs.libsForQt5.breeze-qt5;
|
package = pkgs.libsForQt5.breeze-qt5;
|
||||||
name = "breeze";
|
name = "breeze";
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
plugins.auto-save = {
|
plugins.auto-save = {
|
||||||
enable = true;
|
enable = true;
|
||||||
enableAutoSave = true;
|
settings.enabled = true;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
@ -23,6 +23,7 @@
|
||||||
./which_key.nix
|
./which_key.nix
|
||||||
./wilder.nix
|
./wilder.nix
|
||||||
./virt-column.nix
|
./virt-column.nix
|
||||||
|
./devicons.nix
|
||||||
];
|
];
|
||||||
enable = true;
|
enable = true;
|
||||||
enableMan = 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;
|
clangd.enable = true;
|
||||||
fsautocomplete.enable = true;
|
fsautocomplete.enable = true;
|
||||||
gopls.enable = true;
|
gopls.enable = true;
|
||||||
nil_ls.enable = true;
|
nil-ls.enable = true;
|
||||||
#nixd.enable = true;
|
#nixd.enable = true;
|
||||||
rust-analyzer = {
|
rust-analyzer = {
|
||||||
enable = true;
|
enable = true;
|
||||||
installRustc = true;
|
installRustc = true;
|
||||||
|
installCargo = true;
|
||||||
};
|
};
|
||||||
tsserver.enable = true;
|
ts-ls.enable = true;
|
||||||
};
|
};
|
||||||
keymaps.lspBuf = {
|
keymaps.lspBuf = {
|
||||||
"gd" = "definition";
|
"gd" = "definition";
|
||||||
|
@ -24,10 +25,8 @@
|
||||||
"K" = "hover";
|
"K" = "hover";
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
lsp-lines = {
|
lsp-lines.enable = true;
|
||||||
enable = true;
|
|
||||||
currentLine = true;
|
|
||||||
};
|
|
||||||
rust-tools.enable = true;
|
rust-tools.enable = true;
|
||||||
};
|
};
|
||||||
|
diagnostics.virtual_lines.only_current_line = true;
|
||||||
}
|
}
|
||||||
|
|
|
@ -4,7 +4,7 @@
|
||||||
enable = true;
|
enable = true;
|
||||||
nixGrammars = true;
|
nixGrammars = true;
|
||||||
nixvimInjections = true; # enables language injection in nixvim
|
nixvimInjections = true; # enables language injection in nixvim
|
||||||
indent = true;
|
settings.indent.enable = true;
|
||||||
};
|
};
|
||||||
treesitter-context.enable = true;
|
treesitter-context.enable = true;
|
||||||
rainbow-delimiters.enable = true;
|
rainbow-delimiters.enable = true;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue