mirror of
https://github.com/jbowdre/dotfiles.git
synced 2024-12-18 19:02:17 +00:00
33 lines
649 B
Nix
33 lines
649 B
Nix
{ inputs, ... }: {
|
|
# neovim config largely lifted from https://github.com/GaetanLepage/nix-config/tree/master/home/modules/tui/neovim
|
|
|
|
imports = [
|
|
inputs.nixvim.homeManagerModules.nixvim
|
|
./autocmds.nix
|
|
./completion.nix
|
|
./keymaps.nix
|
|
./options.nix
|
|
./plugins
|
|
];
|
|
|
|
programs.nixvim = {
|
|
enable = true;
|
|
defaultEditor = true;
|
|
|
|
performance = {
|
|
combinePlugins = {
|
|
enable = true;
|
|
standalonePlugins = [
|
|
"hmts.nvim"
|
|
"nvim-treesitter"
|
|
];
|
|
};
|
|
byteCompileLua.enable = true;
|
|
};
|
|
|
|
viAlias = true;
|
|
vimAlias = true;
|
|
|
|
luaLoader.enable = true;
|
|
};
|
|
}
|