mirror of
https://github.com/Dichgrem/DCGOS.git
synced 2025-12-17 03:31:59 -05:00
feat:add_nixvim
This commit is contained in:
28
home/nixvim/plugins/util/mini.nix
Normal file
28
home/nixvim/plugins/util/mini.nix
Normal file
@@ -0,0 +1,28 @@
|
||||
{
|
||||
plugins = {
|
||||
mini = {
|
||||
enable = true;
|
||||
modules = {
|
||||
comment = {
|
||||
options = {
|
||||
customCommentString = ''
|
||||
<cmd>lua require("ts_context_commentstring.internal").calculate_commentstring() or vim.bo.commentstring<cr>
|
||||
'';
|
||||
};
|
||||
};
|
||||
# Highlight word under cursor
|
||||
cursorword = {
|
||||
delay = 0;
|
||||
};
|
||||
|
||||
# Show indent lines
|
||||
indentscope = {
|
||||
symbol = "│";
|
||||
draw.delay = 0;
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
ts-context-commentstring.enable = true;
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user