nvim stuff

This commit is contained in:
2025-08-05 21:54:18 +02:00
parent 504f9637d9
commit c3ddd5d3fa
9 changed files with 135 additions and 162 deletions

View File

@@ -1,11 +1,11 @@
{pkgs, ...}: {
imports = [
./options.nix
./autocmd.nix
./plugins/conform.nix
./plugins/mini.nix
./plugins/oil.nix
./plugins/treesitter.nix
./plugins/which-key.nix
];
home.shellAliases.v = "nvim";

View File

@@ -0,0 +1,6 @@
{
programs.nixvim.globalOpts = {
expandtab = true;
shiftwidth = 2;
};
}

View File

@@ -37,6 +37,11 @@
source_func = "omnifunc";
};
};
indentscope = {};
move = {};
pairs = {};
trailspace = {};
visits = {};
pick = {};
surround = {};
};

View File

@@ -1,5 +0,0 @@
{
programs.nixvim.plugins.which-key = {
enable = true;
};
}

View File

@@ -6,6 +6,7 @@
theme = "catppuccin-latte";
default_layout = "compact";
default_shell = "${pkgs.fish}/bin/fish";
no_pane_frames = true;
show_startup_tips = false;
show_release_notes = false;
};