feat: neovim

This commit is contained in:
Ryan Yin
2023-07-10 19:06:59 +08:00
parent b6629a38a1
commit 21b3d4ad37
37 changed files with 2499 additions and 18 deletions

View File

@@ -0,0 +1,16 @@
return {
"lukas-reineke/indent-blankline.nvim",
config = function()
vim.opt.list = true
vim.opt.listchars:append("space:⋅")
vim.opt.listchars:append("eol:↴")
require("indent_blankline").setup({
char = "",
show_end_of_line = true,
space_char_blankline = " ",
show_current_context = true,
show_current_context_start = true,
})
end,
}