first commit

This commit is contained in:
2026-06-24 20:20:23 +02:00
commit 8fc0d08dbc
77 changed files with 5688 additions and 0 deletions
+31
View File
@@ -0,0 +1,31 @@
{ ... }:
{
imports = [
./terminal.nix
./neotree.nix
./cmp.nix
./lualine.nix
./ui.nix
./lsp/default.nix
./dbg/default.nix
];
vim = {
extraLuaFiles = [
(builtins.path {
path = ./raw/opts.lua;
name = "opts.lua";
})
];
autopairs.nvim-autopairs.enable = true;
telescope.enable = true;
autocomplete = { enableSharedCmpSources = true; };
binds = {
whichKey = {
enable = true;
#setupOpts.preset = "helix";
};
};
};
}