aboutsummaryrefslogtreecommitdiff
path: root/vim.dot.link/plugin/ui.vim
blob: 631d4936b834c9b5a8001b31085318ad7caf88aa (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
" ui.vim - UI customization
"
" Author: Silvio Rhatto <rhatto@riseup.net>

" 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
"python from powerline.vim import setup as powerline_setup
"python powerline_setup()
"python del powerline_setup
"

" 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
"colorscheme github
"colorscheme solarized
"colorscheme gentooish
"colorscheme revolutions
"colorscheme two2tango
"colorscheme vj
"colorscheme wood
"colorscheme zenburn
"colorscheme inkpot
if $WINDOWID != ""
  colorscheme xoria256
else
  colorscheme zenburn
endif