aboutsummaryrefslogtreecommitdiffstats
path: root/.vim
diff options
context:
space:
mode:
authorDavid Runge <dave@sleepmap.de>2015-03-11 17:24:28 +0100
committerDavid Runge <dave@sleepmap.de>2015-03-11 17:24:28 +0100
commit787d6c0cc767d9bb641e6d39da812dadc64c309e (patch)
treefd33bbab79244ac36b08de68c5a127bfe47b7167 /.vim
parente5a2cfc398c0f7fdb03dbc528bc616a173ea2bf1 (diff)
parent57e415a858c86bb21d85a28cac93fbab7156963f (diff)
downloaddotfiles-787d6c0cc767d9bb641e6d39da812dadc64c309e.tar.gz
dotfiles-787d6c0cc767d9bb641e6d39da812dadc64c309e.tar.bz2
dotfiles-787d6c0cc767d9bb641e6d39da812dadc64c309e.tar.xz
dotfiles-787d6c0cc767d9bb641e6d39da812dadc64c309e.zip
Merge branch 'master' of sleepmap:dotfiles
* 'master' of sleepmap:dotfiles: .vim/addons-settings.vim: Removing powerline support and replacing ugly stuff with ascii characters. .vdirsyncer/config: Encapsulating paths with ~ in double quotes, as vdirsyncer creates a weird ~ folder in your home otherwise. termite/config: Switching to Inconsolata (made available through powerline-fonts-git). pavucontrol.ini: Removing, as it's going to be rewritten each call anyways. .tmux.conf: Updating colours, incorporating tpm, removing powerline stuff. .compton.conf: Adding MPlayer to comptons exclude lists.
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