mirror of
https://github.com/BalrajSinghGidda/nixos-dotfiles.git
synced 2026-04-07 09:27:23 +00:00
33 lines
803 B
Nix
33 lines
803 B
Nix
{ pkgs, ... }:
|
|
|
|
{
|
|
programs.nvf = {
|
|
enable = true;
|
|
settings = {
|
|
vim = {
|
|
viAlias = true;
|
|
vimAlias = false;
|
|
theme = {
|
|
enable = true;
|
|
name = "tokyonight";
|
|
style = "night";
|
|
};
|
|
languages = {
|
|
enableTreesitter = true;
|
|
|
|
nix.enable = true;
|
|
python.enable = true;
|
|
};
|
|
lsp = {
|
|
enable = true;
|
|
};
|
|
statusline.lualine = {
|
|
enable = true;
|
|
};
|
|
telescope.enable = true;
|
|
autocomplete.nvim-cmp.enable = true;
|
|
};
|
|
};
|
|
};
|
|
}
|