summaryrefslogtreecommitdiff
path: root/apps/nixvim.nix
diff options
context:
space:
mode:
authorozpv <39195175+ozpv@users.noreply.github.com>2026-05-26 05:56:01 +0000
committerGitHub <noreply@github.com>2026-05-26 05:56:01 +0000
commitccff75ce40f47d233ccbda36e11648ff6f841b35 (patch)
tree9d6a5b808c483ce40102e38a3c74c81183554aa4 /apps/nixvim.nix
parent1303a403ed9bb65784d0a7f731f374adfd18e3d8 (diff)
update to 26.05
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 ];