Initial commit
This commit is contained in:
38
home/editors/nvim/plugins/editing/default.nix
Normal file
38
home/editors/nvim/plugins/editing/default.nix
Normal file
@@ -0,0 +1,38 @@
|
||||
{
|
||||
plugins = {
|
||||
nvim-autopairs = {
|
||||
enable = true;
|
||||
settings = {
|
||||
mapBs = false;
|
||||
checkTs = true;
|
||||
tsConfig = {
|
||||
lua = ["string" "source"];
|
||||
javascript = ["string" "template_string"];
|
||||
};
|
||||
disabledFiletypes = ["minifiles"];
|
||||
};
|
||||
};
|
||||
|
||||
mini = {
|
||||
modules = {
|
||||
move = {};
|
||||
splitjoin = {};
|
||||
# surround = {};
|
||||
trailspace = {};
|
||||
};
|
||||
};
|
||||
|
||||
rainbow-delimiters.enable = true;
|
||||
twilight.enable = true;
|
||||
zen-mode.enable = true;
|
||||
|
||||
nvim-tree = {
|
||||
enable = true;
|
||||
settings = {
|
||||
renderer = {
|
||||
group_empty = true;
|
||||
};
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user