Skip to content

Commit

Permalink
nvim: plugin update
Browse files Browse the repository at this point in the history
  • Loading branch information
suba327777 committed Nov 12, 2023
1 parent 7d0a204 commit 99b7a75
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 9 deletions.
20 changes: 12 additions & 8 deletions nvim/after/plugin/indent-blackline.lua
Original file line number Diff line number Diff line change
@@ -1,13 +1,17 @@
vim.opt.termguicolors = true
vim.cmd [[highlight IndentBlanklineIndent guifg=#3E4452 gui=nocombine]]
vim.opt.list = true
vim.opt.listchars:append "eol:↴"

require("indent_blankline").setup {
space_char_blankline = " ",
show_current_context = true,
show_current_context_start = true,
char_highlight_list = {
'IndentBlanklineIndent'
}
local highlight = {
"gray"
}

local hooks = require "ibl.hooks"

hooks.register(hooks.type.HIGHLIGHT_SETUP, function()
vim.api.nvim_set_hl(0, "gray", { fg = "#3E4452" })
end)

require("ibl").setup {
indent = { highlight = highlight }
}
2 changes: 1 addition & 1 deletion nvim/plugin/lspconfig.rc.lua
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ require("neodev").setup({

})

nvim_lsp.sumneko_lua.setup {
nvim_lsp.lua_ls.setup {
on_attach = on_attach,
settings = {
Lua = {
Expand Down

0 comments on commit 99b7a75

Please sign in to comment.