mirror of
https://github.com/Nickiel12/nicks-nix-config.git
synced 2024-11-24 13:45:29 -08:00
Compare commits
4 commits
e34475b4b1
...
44b6333bd9
Author | SHA1 | Date | |
---|---|---|---|
44b6333bd9 | |||
0392105f94 | |||
42f1483f1a | |||
0ce9b14a5a |
2 changed files with 11 additions and 11 deletions
|
@ -31,8 +31,6 @@ in
|
||||||
# Optional
|
# Optional
|
||||||
# Whether to enable hyprland-session.target on hyprland startup
|
# Whether to enable hyprland-session.target on hyprland startup
|
||||||
systemd.enable = true;
|
systemd.enable = true;
|
||||||
# Whether to enable patching wlroots for better Nvidia support
|
|
||||||
enableNvidiaPatches = true;
|
|
||||||
|
|
||||||
extraConfig = lib.strings.concatStrings [
|
extraConfig = lib.strings.concatStrings [
|
||||||
monitor_config
|
monitor_config
|
||||||
|
|
|
@ -137,7 +137,6 @@ in
|
||||||
key = "<leader>d";
|
key = "<leader>d";
|
||||||
action = "\"_d";
|
action = "\"_d";
|
||||||
}
|
}
|
||||||
|
|
||||||
{
|
{
|
||||||
# leader+p delete the selection to the void, then paste
|
# leader+p delete the selection to the void, then paste
|
||||||
mode = "x";
|
mode = "x";
|
||||||
|
@ -148,10 +147,16 @@ in
|
||||||
|
|
||||||
plugins = {
|
plugins = {
|
||||||
|
|
||||||
|
lsp.enable = true;
|
||||||
|
|
||||||
|
lsp.servers = {
|
||||||
|
gopls.enable = true;
|
||||||
|
};
|
||||||
|
|
||||||
nvim-tree = {
|
nvim-tree = {
|
||||||
enable = true;
|
enable = true;
|
||||||
openOnSetup = true;
|
openOnSetup = true;
|
||||||
};
|
};
|
||||||
|
|
||||||
nvim-autopairs = {
|
nvim-autopairs = {
|
||||||
enable = true;
|
enable = true;
|
||||||
|
@ -166,15 +171,10 @@ in
|
||||||
"rust"
|
"rust"
|
||||||
"toml"
|
"toml"
|
||||||
"lua"
|
"lua"
|
||||||
|
"go"
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
rainbow-delimiters.enable = true;
|
rainbow-delimiters.enable = true;
|
||||||
treesitter-refactor = {
|
|
||||||
enable = true;
|
|
||||||
#highlightCurrentScope.enable = true;
|
|
||||||
navigation.enable = true;
|
|
||||||
smartRename.enable = true;
|
|
||||||
};
|
|
||||||
|
|
||||||
comment-nvim = {
|
comment-nvim = {
|
||||||
enable = true;
|
enable = true;
|
||||||
|
@ -200,9 +200,11 @@ in
|
||||||
# Read settings here: https://github.com/mfussenegger/nvim-dap#Usage
|
# Read settings here: https://github.com/mfussenegger/nvim-dap#Usage
|
||||||
# See :help dap.txt, :help dap-mapping and :help dap-api.
|
# See :help dap.txt, :help dap-mapping and :help dap-api.
|
||||||
cmp-dap.enable = true;
|
cmp-dap.enable = true;
|
||||||
cmp-buffer.enable = true;
|
# method signature with current arguement hints)
|
||||||
cmp-nvim-lsp-signature-help.enable = true;
|
cmp-nvim-lsp-signature-help.enable = true;
|
||||||
|
# lua source autocomplete
|
||||||
cmp-nvim-lua.enable = true;
|
cmp-nvim-lua.enable = true;
|
||||||
|
# filesystem paths
|
||||||
cmp-path.enable = true;
|
cmp-path.enable = true;
|
||||||
|
|
||||||
presence-nvim.enable = true;
|
presence-nvim.enable = true;
|
||||||
|
|
Loading…
Reference in a new issue