diff options
| author | 2026-02-22 13:02:08 +0300 | |
|---|---|---|
| committer | 2026-02-22 15:28:51 +0300 | |
| commit | ad175cdb4045fbe8fecb686c871b481e312d43dd (patch) | |
| tree | 533b63cdadd138d94ff3247fa5faabea95dfd5a6 /config/nvim/lua/plugins/folding.lua | |
| parent | fixes zshrc (diff) | |
| download | dotfiles-ad175cdb4045fbe8fecb686c871b481e312d43dd.tar.gz dotfiles-ad175cdb4045fbe8fecb686c871b481e312d43dd.tar.bz2 dotfiles-ad175cdb4045fbe8fecb686c871b481e312d43dd.tar.xz dotfiles-ad175cdb4045fbe8fecb686c871b481e312d43dd.zip | |
nvim configs
Diffstat (limited to 'config/nvim/lua/plugins/folding.lua')
| -rw-r--r-- | config/nvim/lua/plugins/folding.lua | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/config/nvim/lua/plugins/folding.lua b/config/nvim/lua/plugins/folding.lua new file mode 100644 index 0000000..9b30204 --- /dev/null +++ b/config/nvim/lua/plugins/folding.lua @@ -0,0 +1,8 @@ +return { + "nicolas-martin/region-folding.nvim", + event = { "BufReadPost", "BufNewFile" }, + opts = { + region_text = { start = "{{{", ending = "}}}" }, + fold_indicator = "▼", + }, +} |
