aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMitch Riedstra <mitch@riedstra.us>2018-03-15 21:05:23 -0400
committerMitch Riedstra <mitch@riedstra.us>2018-03-15 21:05:23 -0400
commit5d4c70a3bf04b51a4972c6ccf19da9de34b3c0b4 (patch)
treeacf01aca4065609576c84bdb822a9d35c197a63c
parent0507b921b4e21db6e26beab317ed06d92834da1e (diff)
downloadvim-cfg-5d4c70a3bf04b51a4972c6ccf19da9de34b3c0b4.tar.gz
vim-cfg-5d4c70a3bf04b51a4972c6ccf19da9de34b3c0b4.tar.xz
Added airline themes to the plugins and a few options to the airline
-rw-r--r--init.vim8
-rwxr-xr-xsetup.sh31
2 files changed, 25 insertions, 14 deletions
diff --git a/init.vim b/init.vim
index 4783756..980904b 100644
--- a/init.vim
+++ b/init.vim
@@ -68,6 +68,14 @@ let g:airline#extensions#tabline#enabled = 1
" Show just the filename
let g:airline#extensions#tabline#fnamemod = ':t'
+" if !exists('g:airline_symbols')
+" let g:airline_symbols = {}
+" endif
+" let g:airline_symbols.space = "\ua0"
+
+let g:airline_section_z = airline#section#create(['windowswap', '%3p%% ', 'linenr', ':%3v'])
+
+
" This lets you just hit enter instead
" of pressing control-n Some people like it
" personally I'm not that much of a fan
diff --git a/setup.sh b/setup.sh
index cd5b911..bad43ed 100755
--- a/setup.sh
+++ b/setup.sh
@@ -14,33 +14,36 @@ clone() {
fi
cd $WD
}
-DIR="bundle/jinja2-syntax"
-URL="https://github.com/Glench/Vim-Jinja2-Syntax.git"
-clone
-DIR="bundle/vim-airline"
-URL="https://github.com/vim-airline/vim-airline.git"
-clone
DIR="bundle/nerdtree"
URL="https://github.com/scrooloose/nerdtree.git"
clone
DIR="bundle/vim-autocomplpop"
URL="https://git.riedstra.us/mitch/vim-autocomplpop.git"
clone
-DIR="bundle/ag.vim"
-URL="https://github.com/rking/ag.vim.git"
+DIR="bundle/vim-airline"
+URL="https://github.com/vim-airline/vim-airline.git"
clone
-DIR="bundle/tagbar"
-URL="git://github.com/majutsushi/tagbar"
+DIR="bundle/emmet-vim"
+URL="https://github.com/mattn/emmet-vim.git"
clone
-DIR="bundle/ctrlp.vim"
-URL="https://github.com/ctrlpvim/ctrlp.vim"
+DIR="bundle/jinja2-syntax"
+URL="https://github.com/Glench/Vim-Jinja2-Syntax.git"
clone
DIR="bundle/vim-distinguished"
URL="https://github.com/Lokaltog/vim-distinguished.git"
clone
-DIR="bundle/emmet-vim"
-URL="https://github.com/mattn/emmet-vim.git"
+DIR="bundle/vim-airline-themes"
+URL="https://github.com/vim-airline/vim-airline-themes/"
+clone
+DIR="bundle/ag.vim"
+URL="https://github.com/rking/ag.vim.git"
+clone
+DIR="bundle/ctrlp.vim"
+URL="https://github.com/ctrlpvim/ctrlp.vim"
clone
DIR="bundle/l9"
URL="https://git.riedstra.us/mitch/vim-l9.git"
clone
+DIR="."
+URL="https://git.riedstra.us/mitch/vim-cfg"
+clone