Compare commits

..

No commits in common. "44b6333bd901ded525fc16b1129426d496dbec91" and "e34475b4b16e84d2ac268f1f7a7a74c852ae2188" have entirely different histories.

2 changed files with 11 additions and 11 deletions

View file

@ -31,6 +31,8 @@ in
# Optional
# Whether to enable hyprland-session.target on hyprland startup
systemd.enable = true;
# Whether to enable patching wlroots for better Nvidia support
enableNvidiaPatches = true;
extraConfig = lib.strings.concatStrings [
monitor_config

View file

@ -137,6 +137,7 @@ in
key = "<leader>d";
action = "\"_d";
}
{
# leader+p delete the selection to the void, then paste
mode = "x";
@ -147,12 +148,6 @@ in
plugins = {
lsp.enable = true;
lsp.servers = {
gopls.enable = true;
};
nvim-tree = {
enable = true;
openOnSetup = true;
@ -171,10 +166,15 @@ in
"rust"
"toml"
"lua"
"go"
];
};
rainbow-delimiters.enable = true;
treesitter-refactor = {
enable = true;
#highlightCurrentScope.enable = true;
navigation.enable = true;
smartRename.enable = true;
};
comment-nvim = {
enable = true;
@ -200,11 +200,9 @@ in
# Read settings here: https://github.com/mfussenegger/nvim-dap#Usage
# See :help dap.txt, :help dap-mapping and :help dap-api.
cmp-dap.enable = true;
# method signature with current arguement hints)
cmp-buffer.enable = true;
cmp-nvim-lsp-signature-help.enable = true;
# lua source autocomplete
cmp-nvim-lua.enable = true;
# filesystem paths
cmp-path.enable = true;
presence-nvim.enable = true;