From 57e415a858c86bb21d85a28cac93fbab7156963f Mon Sep 17 00:00:00 2001 From: David Runge Date: Wed, 11 Mar 2015 17:21:43 +0100 Subject: .vim/addons-settings.vim: Removing powerline support and replacing ugly stuff with ascii characters. --- .vim/addons-settings.vim | 31 ++++++++++++++++--------------- 1 file changed, 16 insertions(+), 15 deletions(-) (limited to '.vim') diff --git a/.vim/addons-settings.vim b/.vim/addons-settings.vim index 77a36aa..234ede3 100644 --- a/.vim/addons-settings.vim +++ b/.vim/addons-settings.vim @@ -80,24 +80,25 @@ autocmd BufRead,BufNewFile *.js set ft=javascript syntax=jquery " ================ lightline settings ================ let g:lightline = { - \ 'colorscheme': 'wombat', - \ 'active': { - \ 'left': [ [ 'mode' ], - \ [ 'fugitive', 'readonly', 'filename', 'modified' ] ] - \ }, - \ 'component': { - \ 'readonly': '%{&readonly?"⭤":""}', - \ 'fugitive': '%{exists("*fugitive#head")?fugitive#head():""}' - \ }, - \ 'component_visible_condition': { - \ 'fugitive': '(exists("*fugitive#head") && ""!=fugitive#head())' - \ }, - \ 'separator': { 'left': '⮀', 'right': '⮂' }, - \ 'subseparator': { 'left': '⮁', 'right': '⮃' } - \ } + \ 'colorscheme': 'solarized', + \ 'active': { + \ 'left': [ [ 'mode' ], + \ [ 'fugitive', 'readonly', 'filename', 'modified' ] ] + \ }, + \ 'component': { + \ 'readonly': '%{&readonly?"x":""}', + \ 'fugitive': '%{exists("*fugitive#head")?fugitive#head():""}' + \ }, + \ 'component_visible_condition': { + \ 'fugitive': '(exists("*fugitive#head") && ""!=fugitive#head())' + \ }, + \ 'separator': { 'left': '', 'right': '' }, + \ 'subseparator': { 'left': '|', 'right': '|' } + \ } set laststatus=2 + " ================ nerdtree-tabs settings ================ " Auto open nerd tree on startup let g:nerdtree_tabs_open_on_gui_startup = 0 -- cgit v1.2.3-54-g00ecf