diff options
author | Silvio Rhatto <rhatto@riseup.net> | 2024-07-30 01:06:32 -0300 |
---|---|---|
committer | Silvio Rhatto <rhatto@riseup.net> | 2024-07-30 01:06:32 -0300 |
commit | 6da0eb60ce8435917e126006b9506cbcd31b6ff0 (patch) | |
tree | f7189dbd5ed6076b7138974d2b5742f191ce7152 /vim.dot.link/plugin/ui.vim | |
parent | c0c227d51a3caf5502eac6bd65ab01117f12d29a (diff) | |
download | vim-6da0eb60ce8435917e126006b9506cbcd31b6ff0.tar.gz vim-6da0eb60ce8435917e126006b9506cbcd31b6ff0.tar.bz2 |
Feat: additional folding markers
Diffstat (limited to 'vim.dot.link/plugin/ui.vim')
-rw-r--r-- | vim.dot.link/plugin/ui.vim | 15 |
1 files changed, 9 insertions, 6 deletions
diff --git a/vim.dot.link/plugin/ui.vim b/vim.dot.link/plugin/ui.vim index 631d493..2dbdd78 100644 --- a/vim.dot.link/plugin/ui.vim +++ b/vim.dot.link/plugin/ui.vim @@ -1,27 +1,29 @@ -" ui.vim - UI customization +" ui.vim - UI customization {{{ " " Author: Silvio Rhatto <rhatto@riseup.net> -" Status and tab lines +" Status and tab lines {{{ set laststatus=2 " Always display the statusline in all windows set showtabline=2 " Always display the tabline, even if there is only one tab set noshowmode " Hide the default mode text (e.g. -- INSERT -- below the statusline) +" }}} -" Powerline +" Powerline {{{ "python from powerline.vim import setup as powerline_setup "python powerline_setup() "python del powerline_setup -" +" }}} -" Airline +" Airline {{{ if $WINDOWID != "" let g:airline_powerline_fonts=1 let g:airline#extensions#tabline#enabled=1 else let g:loaded_airline = 1 endif +" }}} -" Color scheme +" Color scheme {{{ "colorscheme github "colorscheme solarized "colorscheme gentooish @@ -36,3 +38,4 @@ if $WINDOWID != "" else colorscheme zenburn endif +" }}} |