Gitiles
Code Review
Sign In
git.clicks.codes
/
Minion
/
NixFiles
/
cf6e4d055fc1fdfab77e5fb4107542db8a2e1b4d
/
.
/
modules
/
neovim
/
indentation
/
default.nix
blob: 354cce5066c567e97aabd8abfc9654402d8985de [
file
] [
log
] [
blame
]
{
pkgs
,
...
}:
{
programs
.
neovim
=
{
extraConfig
=
builtins
.
readFile
./
indentation
.
vim
+
''
source $
{./
indentation
.
lua
}
''
;
plugins
=
with
pkgs
.
vimPlugins
;
[
vim
-
sleuth
indent
-
blankline
-
nvim
];
};
}