Current working changes to configuration

This commit is contained in:
Alex Selimov 2026-08-27 23:56:32 -04:00
commit 0a24ffcef1
66 changed files with 5312 additions and 0 deletions

22
home/neovim/neovim.nix Normal file
View file

@ -0,0 +1,22 @@
{config, pkgs, ... }:
{
programs.neovim = {
enable = true;
defaultEditor = true;
extraPackages = with pkgs; [
fd
lua-language-server
stylua
tree-sitter
clang
deno
nodejs
shellcheck
];
};
xdg.configFile."nvim" = {
source = ./neovim;
recursive = true;
};
}