Compare commits

...

3 commits

Author SHA1 Message Date
80e73feb8f Revert "flake.lock: Update"
This reverts commit 262f12f8e6.
2023-12-19 19:44:33 -08:00
a4ee57713d Revert "added go support; trimmed unused plugins"
This reverts commit 44b6333bd9.
2023-12-19 19:44:20 -08:00
262f12f8e6 flake.lock: Update
Flake lock file updates:

• Updated input 'home-manager':
    'github:nix-community/home-manager/defbb9c5857e157703e8fc7cf3c2ceb01cb95883' (2023-12-10)
  → 'github:nix-community/home-manager/efc177c15f2a8bb063aeb250fe3c7c21e1de265e' (2023-12-19)
• Updated input 'nixpkgs':
    'github:nixos/nixpkgs/666fc80e7b2afb570462423cb0e1cf1a3a34fedd' (2023-12-09)
  → 'github:nixos/nixpkgs/91a00709aebb3602f172a0bf47ba1ef013e34835' (2023-12-17)
• Updated input 'nixpkgs-stable':
    'github:NixOS/nixpkgs/fecdbce27a28ca6a434b6065e2a54dd87d1e44b8' (2023-12-11)
  → 'github:NixOS/nixpkgs/312ab59e8ade69e6083017bd9b98a2919f1fb86a' (2023-12-20)
• Updated input 'nixvim':
    'github:nix-community/nixvim/c9149122a8930b370678bf59b7b3226a2a6ee76a' (2023-12-11)
  → 'github:nix-community/nixvim/309e5644fc72ce82b31da5290638019f60a0a84b' (2023-12-18)
• Updated input 'nixvim/nixpkgs':
    'github:NixOS/nixpkgs/91050ea1e57e50388fa87a3302ba12d188ef723a' (2023-12-01)
  → 'github:NixOS/nixpkgs/a9bf124c46ef298113270b1f84a164865987a91c' (2023-12-11)
• Updated input 'nixvim/pre-commit-hooks':
    'github:cachix/pre-commit-hooks.nix/e5ee5c5f3844550c01d2131096c7271cec5e9b78' (2023-11-25)
  → 'github:cachix/pre-commit-hooks.nix/007a45d064c1c32d04e1b8a0de5ef00984c419bc' (2023-12-13)
2023-12-19 17:45:26 -08:00

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,16 +148,10 @@ in
plugins = {
lsp.enable = true;
lsp.servers = {
gopls.enable = true;
};
nvim-tree = {
enable = true;
openOnSetup = true;
};
};
nvim-autopairs = {
enable = 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;