mirror of
https://git.sr.ht/~roxwize/.dotfiles
synced 2025-02-07 18:02:51 +00:00
18 lines
430 B
Nix
18 lines
430 B
Nix
{ pkgs, ... }: {
|
|
programs.neovim = {
|
|
enable = true;
|
|
defaultEditor = true;
|
|
vimAlias = true;
|
|
plugins = with pkgs.vimPlugins; [
|
|
vim-just
|
|
vim-sleuth
|
|
vim-wakatime
|
|
];
|
|
extraLuaConfig = ''
|
|
vim.opt.tabstop = 4
|
|
vim.opt.softtabstop = 4
|
|
vim.opt.shiftwidth = 4
|
|
vim.opt.expandtab = true
|
|
'';
|
|
};
|
|
}
|