add indent-blankline
This commit is contained in:
parent
e9c9e10cfa
commit
8beb68162f
|
@ -72,6 +72,10 @@ Plug '~/nvim-paper-tonic'
|
||||||
Plug 'quangnguyen30192/cmp-nvim-ultisnips', { 'branch': 'main' }
|
Plug 'quangnguyen30192/cmp-nvim-ultisnips', { 'branch': 'main' }
|
||||||
|
|
||||||
"}}}
|
"}}}
|
||||||
|
" #indent-blankline.nvim {{{
|
||||||
|
" https://github.com/lukas-reineke/indent-blankline.nvim
|
||||||
|
Plug 'lukas-reineke/indent-blankline.nvim'
|
||||||
|
"}}}
|
||||||
|
|
||||||
" keeping
|
" keeping
|
||||||
" #vim-hexokinase {{{
|
" #vim-hexokinase {{{
|
||||||
|
@ -327,7 +331,7 @@ runtime macros/matchit.vim
|
||||||
lua <<EOF
|
lua <<EOF
|
||||||
require('init-plugins')
|
require('init-plugins')
|
||||||
require('init-treesitter')
|
require('init-treesitter')
|
||||||
-- require('init-efm-langserver')
|
require('init-indent-blankline')
|
||||||
require('init-null-ls')
|
require('init-null-ls')
|
||||||
require('init-lspconfig')
|
require('init-lspconfig')
|
||||||
require('init-cmp')
|
require('init-cmp')
|
||||||
|
|
|
@ -0,0 +1,11 @@
|
||||||
|
|
||||||
|
require("indent_blankline").setup {
|
||||||
|
space_char_blankline = " ",
|
||||||
|
|
||||||
|
show_current_context = true,
|
||||||
|
}
|
||||||
|
|
||||||
|
vim.cmd [[
|
||||||
|
highlight IndentBlanklineChar guifg=#e5e5e5 gui=nocombine
|
||||||
|
highlight IndentBlanklineContextChar guifg=#666666 gui=nocombine
|
||||||
|
]]
|
|
@ -4,7 +4,6 @@ local nvim_lsp = require('lspconfig')
|
||||||
-- map buffer local keybindings when the language server attaches
|
-- map buffer local keybindings when the language server attaches
|
||||||
local servers = {
|
local servers = {
|
||||||
-- npm i -g bash-language-server
|
-- npm i -g bash-language-server
|
||||||
-- TODO - don't run for sh files but have something else instead - shellcheck?
|
|
||||||
-- no formatting support
|
-- no formatting support
|
||||||
'bashls',
|
'bashls',
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue