summaryrefslogtreecommitdiff
path: root/apps/nixvim.nix
diff options
context:
space:
mode:
Diffstat (limited to 'apps/nixvim.nix')
-rw-r--r--apps/nixvim.nix32
1 files changed, 11 insertions, 21 deletions
diff --git a/apps/nixvim.nix b/apps/nixvim.nix
index 9be4721..c5ff3fd 100644
--- a/apps/nixvim.nix
+++ b/apps/nixvim.nix
@@ -1,7 +1,7 @@
{ config, pkgs, inputs, ... }:
{
- imports = [ inputs.nixvim.homeManagerModules.nixvim ];
+ imports = [ inputs.nixvim.homeModules.nixvim ];
programs.nixvim = {
enable = true;
@@ -23,7 +23,6 @@
key = ";";
action = ":";
}
-
{
key = "<leader>gg";
action = "<cmd>Man<CR>";
@@ -46,6 +45,16 @@
mouse = "a";
};
+ colorschemes.gruvbox = {
+ enable = true;
+ settings = {
+ integrations = {
+ cmp = true;
+ };
+ terminal_colors = true;
+ };
+ };
+
plugins = {
lazy.enable = true;
@@ -59,12 +68,6 @@
};
};
- treesitter = {
- enable = true;
- folding = false;
- settings.indent.enable = true;
- };
-
lsp = {
enable = true;
servers = {
@@ -121,19 +124,6 @@
};
web-devicons.enable = true;
-
- lualine.enable = true;
- };
-
- colorschemes.gruvbox = {
- enable = true;
- settings = {
- integrations = {
- cmp = true;
- treesitter = true;
- };
- terminal_colors = true;
- };
};
extraPlugins = with pkgs.vimPlugins; [ vim-toml ];