folds
This commit is contained in:
parent
55f7f5b98d
commit
76cf1717b9
1 changed files with 26 additions and 0 deletions
|
|
@ -19,5 +19,31 @@
|
||||||
autoindent = true; # Do clever autoindenting
|
autoindent = true; # Do clever autoindenting
|
||||||
# TODO: i want to see 4 spaces when i press tab in python and 2 spaces in nix using setlocal
|
# TODO: i want to see 4 spaces when i press tab in python and 2 spaces in nix using setlocal
|
||||||
# is it possible for me to set this per language?
|
# is it possible for me to set this per language?
|
||||||
|
|
||||||
|
# Folding
|
||||||
|
foldlevel = 99; # Folds with a level higher than this number will be closed
|
||||||
|
# foldcolumn = "1";
|
||||||
|
foldenable = true;
|
||||||
|
# foldlevelstart = -1;
|
||||||
|
foldmethod = "expr";
|
||||||
|
foldexpr = "nvim_treesitter#foldexpr()";
|
||||||
|
# fillchars = {
|
||||||
|
# horiz = "━";
|
||||||
|
# horizup = "┻";
|
||||||
|
# horizdown = "┳";
|
||||||
|
# vert = "┃";
|
||||||
|
# vertleft = "┫";
|
||||||
|
# vertright = "┣";
|
||||||
|
# verthoriz = "╋";
|
||||||
|
#
|
||||||
|
# eob = " ";
|
||||||
|
# diff = "╱";
|
||||||
|
#
|
||||||
|
# fold = " ";
|
||||||
|
# foldopen = "";
|
||||||
|
# foldclose = "";
|
||||||
|
#
|
||||||
|
# msgsep = "‾";
|
||||||
|
# };
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue