diff options
author | sefidel <contact@sefidel.net> | 2023-10-01 23:12:38 +0900 |
---|---|---|
committer | sefidel <contact@sefidel.net> | 2023-10-01 23:13:14 +0900 |
commit | b3633997890abd5c1ff190a93f435c90d352b4d6 (patch) | |
tree | ae0b2bb1676d74bc8f352a1462cc037d36d602e6 /fnl | |
parent | ff2b7e744afec051844aa20e25b9564a44505ffb (diff) | |
download | nvimrc-b3633997890abd5c1ff190a93f435c90d352b4d6.tar.gz nvimrc-b3633997890abd5c1ff190a93f435c90d352b4d6.zip |
feat(packs/mini-indentscope): init
Diffstat (limited to 'fnl')
-rw-r--r-- | fnl/nvrc/pack.fnl | 1 | ||||
-rw-r--r-- | fnl/nvrc/packs/mini-indentscope.fnl | 4 |
2 files changed, 5 insertions, 0 deletions
diff --git a/fnl/nvrc/pack.fnl b/fnl/nvrc/pack.fnl index 5708f51..0cf5abc 100644 --- a/fnl/nvrc/pack.fnl +++ b/fnl/nvrc/pack.fnl @@ -13,6 +13,7 @@ (pack! :antoinemadec/FixCursorHold.nvim) (pack! :justinmk/vim-dirvish) +(pack! :echasnovski/mini.indentscope {:req :mini-indentscope}) (pack! :neovim/nvim-lspconfig {:req :lspconfig :event :BufReadPre diff --git a/fnl/nvrc/packs/mini-indentscope.fnl b/fnl/nvrc/packs/mini-indentscope.fnl new file mode 100644 index 0000000..ed414db --- /dev/null +++ b/fnl/nvrc/packs/mini-indentscope.fnl @@ -0,0 +1,4 @@ +(local {: setup} (require :mini.indentscope)) + +(setup {:symbol :│ + :options {:try_as_border true}}) |