updated to use new shed module schema
This commit is contained in:
@@ -2,6 +2,8 @@
|
||||
|
||||
{
|
||||
imports = [
|
||||
./otter.nix
|
||||
./treesitter.nix
|
||||
./alpha.nix
|
||||
./haskell.nix
|
||||
./vim-matchup.nix
|
||||
|
||||
10
modules/home/programs/nixvim/plugins/otter.nix
Normal file
10
modules/home/programs/nixvim/plugins/otter.nix
Normal file
@@ -0,0 +1,10 @@
|
||||
{
|
||||
programs.nixvim = {
|
||||
plugins.otter = {
|
||||
enable = true;
|
||||
settings = {
|
||||
handle_leading_whitespace = true;
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
||||
16
modules/home/programs/nixvim/plugins/treesitter.nix
Normal file
16
modules/home/programs/nixvim/plugins/treesitter.nix
Normal file
@@ -0,0 +1,16 @@
|
||||
{
|
||||
programs.nixvim = {
|
||||
plugins.treesitter = {
|
||||
enable = true;
|
||||
folding = {
|
||||
enable = true;
|
||||
};
|
||||
indent = {
|
||||
enable = true;
|
||||
};
|
||||
highlight = {
|
||||
enable = true;
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user