Browse Source

autoload/default: more tweaking for indent-blankline

my-config
NTBBloodbath 4 years ago
parent
commit
f37be2daa7
No known key found for this signature in database GPG Key ID: 18D6730BC846AAC5
  1. 44
      autoload/doom/default.vim

44
autoload/doom/default.vim

@ -69,7 +69,9 @@ function doom#default#loadGlob()
let g:indent_blankline_enabled = g:doom_show_indent let g:indent_blankline_enabled = g:doom_show_indent
let g:indent_blankline_char_list = ['|', '¦', '┆', '┊'] let g:indent_blankline_char_list = ['|', '¦', '┆', '┊']
" Disable indent lines on dashboard and help " Disable indent lines on dashboard and help
let g:indent_blankline_filetype_exclude = ['help', 'dashboard'] let g:indent_blankline_filetype_exclude = ['help', 'dashboard', 'NvimTree', 'minimap']
" Disable indent line on first indent
let g:indent_blankline_show_first_indent_level = v:false
" If treesitter is not disabled, then ... " If treesitter is not disabled, then ...
if index(g:doom_disabled_plugins, 'treesitter') == -1 if index(g:doom_disabled_plugins, 'treesitter') == -1
" When on, use treesitter to determine the current context. Then show " When on, use treesitter to determine the current context. Then show
@ -113,26 +115,26 @@ function doom#default#loadGlob()
\ 'Doom Nvim loaded '.plugins_count.' plugins' \ 'Doom Nvim loaded '.plugins_count.' plugins'
\] \]
let g:dashboard_custom_header = [ let g:dashboard_custom_header = [
\ "================= =============== =============== ======== ========", \ "================= =============== =============== ======== ========",
\ "\\\\ . . . . . . .\\\\ //. . . . . . .\\\\ //. . . . . . .\\\\ \\\\. . .\\\\// . . //", \ "\\\\ . . . . . . .\\\\ //. . . . . . .\\\\ //. . . . . . .\\\\ \\\\. . .\\\\// . . //",
\ "||. . ._____. . .|| ||. . ._____. . .|| ||. . ._____. . .|| || . . .\\/ . . .||", \ "||. . ._____. . .|| ||. . ._____. . .|| ||. . ._____. . .|| || . . .\\/ . . .||",
\ "|| . .|| ||. . || || . .|| ||. . || || . .|| ||. . || ||. . . . . . . ||", \ "|| . .|| ||. . || || . .|| ||. . || || . .|| ||. . || ||. . . . . . . ||",
\ "||. . || || . .|| ||. . || || . .|| ||. . || || . .|| || . | . . . . .||", \ "||. . || || . .|| ||. . || || . .|| ||. . || || . .|| || . | . . . . .||",
\ "|| . .|| ||. _-|| ||-_ .|| ||. . || || . .|| ||. _-|| ||-_.|\\ . . . . ||", \ "|| . .|| ||. _-|| ||-_ .|| ||. . || || . .|| ||. _-|| ||-_.|\\ . . . . ||",
\ "||. . || ||-' || || `-|| || . .|| ||. . || ||-' || || `|\\_ . .|. .||", \ "||. . || ||-' || || `-|| || . .|| ||. . || ||-' || || `|\\_ . .|. .||",
\ "|| . _|| || || || || ||_ . || || . _|| || || || |\\ `-_/| . ||", \ "|| . _|| || || || || ||_ . || || . _|| || || || |\\ `-_/| . ||",
\ "||_-' || .|/ || || \\|. || `-_|| ||_-' || .|/ || || | \\ / |-_.||", \ "||_-' || .|/ || || \\|. || `-_|| ||_-' || .|/ || || | \\ / |-_.||",
\ "|| ||_-' || || `-_|| || || ||_-' || || | \\ / | `||", \ "|| ||_-' || || `-_|| || || ||_-' || || | \\ / | `||",
\ "|| `' || || `' || || `' || || | \\ / | ||", \ "|| `' || || `' || || `' || || | \\ / | ||",
\ "|| .===' `===. .==='.`===. .===' /==. | \\/ | ||", \ "|| .===' `===. .==='.`===. .===' /==. | \\/ | ||",
\ "|| .==' \\_|-_ `===. .===' _|_ `===. .===' _-|/ `== \\/ | ||", \ "|| .==' \\_|-_ `===. .===' _|_ `===. .===' _-|/ `== \\/ | ||",
\ "|| .==' _-' `-_ `=' _-' `-_ `=' _-' `-_ /| \\/ | ||", \ "|| .==' _-' `-_ `=' _-' `-_ `=' _-' `-_ /| \\/ | ||",
\ "|| .==' _-' `-__\\._-' `-_./__-' `' |. /| | ||", \ "|| .==' _-' `-__\\._-' `-_./__-' `' |. /| | ||",
\ "||.==' _-' `' | /==.||", \ "||.==' _-' `' | /==.||",
\ "==' _-' N E O V I M \\/ `==", \ "==' _-' N E O V I M \\/ `==",
\ "\\ _-' `-_ /", \ "\\ _-' `-_ /",
\ " `'' ``' ", \ " `'' ``' ",
\ " ", \ " ",
\ ] \ ]
" Header color " Header color
hi! dashboardHeader guifg=#586268 hi! dashboardHeader guifg=#586268

Loading…
Cancel
Save