add config folder
This commit is contained in:
14
.config/nvim/after/plugin/indent-blankline.lua
Normal file
14
.config/nvim/after/plugin/indent-blankline.lua
Normal file
@@ -0,0 +1,14 @@
|
||||
vim.api.nvim_set_hl(0, "IndentBlanklineContextChar", { fg = "#d79921", bg = "none"})
|
||||
|
||||
require("ibl").setup({
|
||||
indent = { char = " "},
|
||||
whitespace = { },
|
||||
scope = { char = "▎",
|
||||
highlight = "IndentBlanklineContextChar",
|
||||
show_start = false,
|
||||
show_end = false,
|
||||
include = { node_type = { python = { "if_statement",
|
||||
"for_statement",
|
||||
"with_statement", } } },
|
||||
},
|
||||
})
|
||||
Reference in New Issue
Block a user