171 current 2024-03-13 13:15:07 24.05.20240309.3030f18 6.7.9-zen1 *
This commit is contained in:
parent
45c6a3debb
commit
d619e531d3
1 changed files with 42 additions and 5 deletions
|
|
@ -1,4 +1,8 @@
|
|||
{pkgs, ...}: {
|
||||
{
|
||||
pkgs,
|
||||
inputs,
|
||||
...
|
||||
}: {
|
||||
config = {
|
||||
enable = true;
|
||||
|
||||
|
|
@ -218,6 +222,43 @@
|
|||
];
|
||||
};
|
||||
|
||||
plugins.indent-blankline = {
|
||||
enable = true;
|
||||
extraOptions = {
|
||||
exclude = {
|
||||
buftypes = [
|
||||
"nofile"
|
||||
"terminal"
|
||||
];
|
||||
filetypes = [
|
||||
"help"
|
||||
"startify"
|
||||
"aerial"
|
||||
"alpha"
|
||||
"dashboard"
|
||||
"neogitstatus"
|
||||
"neo-tree"
|
||||
"TelescopePrompt"
|
||||
];
|
||||
scope = {
|
||||
show_start = false;
|
||||
show_end = false;
|
||||
highlight = ["@keyword"];
|
||||
char = "▏";
|
||||
include = {
|
||||
node_type = {
|
||||
lua = ["table_constructor"];
|
||||
};
|
||||
};
|
||||
};
|
||||
whitespace = {
|
||||
remove_blankline_trail = true;
|
||||
};
|
||||
indent = {char = "▏";};
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
# plugins.nvim-jdtls = {
|
||||
# enable = true;
|
||||
#
|
||||
|
|
@ -305,10 +346,6 @@
|
|||
plugin = overseer-nvim;
|
||||
config = ''lua require('overseer').setup({ task_list = { direction = "bottom" } })'';
|
||||
}
|
||||
{
|
||||
plugin = dropbar-nvim;
|
||||
config = ''lua require('dropbar').setup({ icons = { enable = true, kinds = { use_devicons = false, symbols = { File = "", Folder = "" } }} })'';
|
||||
}
|
||||
];
|
||||
|
||||
extraConfigLua = ''
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue