dotfiles/config/nvim/fnl/plugins/editor.fnl

18 lines
449 B
Plaintext
Raw Normal View History

2025-01-24 03:33:47 +00:00
(local blankline
{1 :lukas-reineke/indent-blankline.nvim
:main :ibl
:opts {:indent {:char "▏"}
:scope {:show_end false :show_start false}}})
(local emmet
{1 :olrtg/nvim-emmet
:config (fn []
(vim.keymap.set [:n :v] :<leader>xe
(. (require :nvim-emmet)
:wrap_with_abbreviation)))})
[
blankline
emmet
]