aboutsummaryrefslogtreecommitdiffstats
path: root/.vim
diff options
context:
space:
mode:
authorDavid Runge <dave@sleepmap.de>2015-03-11 17:21:43 +0100
committerDavid Runge <dave@sleepmap.de>2015-03-11 17:21:43 +0100
commit57e415a858c86bb21d85a28cac93fbab7156963f (patch)
tree1eb8fa11ad4928668d53b82255d69d6c68b89a89 /.vim
parent38e2adaa54ca6e5a08184822eabc738894a73fce (diff)
downloaddotfiles-57e415a858c86bb21d85a28cac93fbab7156963f.tar.gz
dotfiles-57e415a858c86bb21d85a28cac93fbab7156963f.tar.bz2
dotfiles-57e415a858c86bb21d85a28cac93fbab7156963f.tar.xz
dotfiles-57e415a858c86bb21d85a28cac93fbab7156963f.zip
.vim/addons-settings.vim: Removing powerline support and replacing ugly stuff with ascii characters.
Diffstat (limited to '.vim')
-rw-r--r--.vim/addons-settings.vim31
1 files changed, 16 insertions, 15 deletions
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