Skip to content

Commit

Permalink
Add vim-airline-themes
Browse files Browse the repository at this point in the history
  • Loading branch information
stadniklksndr committed Mar 23, 2018
1 parent c3c3909 commit fd714b1
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 1 deletion.
8 changes: 7 additions & 1 deletion .vimrc
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,9 @@ Plugin 'VundleVim/Vundle.vim'
" Status Line At The Bottom Of Each Window ~ https://github.com/vim-airline/vim-airline
Plugin 'vim-airline/vim-airline'

" Collection of themes for vim-airline ~ https://github.com/vim-airline/vim-airline-themes
Plugin 'vim-airline/vim-airline-themes'

" Git wrapper ~ https://github.com/tpope/vim-fugitive
Plugin 'tpope/vim-fugitive'

Expand Down Expand Up @@ -71,13 +74,16 @@ Plugin 'digitaltoad/vim-pug.git'
call vundle#end()


" Vim-Airline Configs (:h airline)
" vim-airline (:h airline)
let g:airline_powerline_fonts = 1
if !exists('g:airline_symbols')
let g:airline_symbols = {}
endif
let g:airline_symbols.branch = ''

" vim-airline-themes
let g:airline_theme='base16_pop'


" Required! To Ignore Plugin Indent Changes, Instead Use: filetype plugin on
filetype plugin indent on
Expand Down
17 changes: 17 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,3 +7,20 @@ sudo apt install exuberant-ctags
sudo apt install fonts-powerline
```
`BundleInstall` - **_run from editor console_** :feet:

## Plugins :children_crossing:

* [Plugin manager for Vim](https://github.com/VundleVim/Vundle.vim)

* [Status Line At The Bottom Of Each Window](https://github.com/vim-airline/vim-airline)
* `:h airline` ~ airline-contents

* [Collection of themes for vim-airline](https://github.com/vim-airline/vim-airline-themes)
* [available themes](https://github.com/vim-airline/vim-airline-themes/tree/master/autoload/airline/themes)
* `:AirlineTheme simple` ~ set the theme from gvim
* `let g:airline_theme='simple'` ~ set in .vimrc

* [Git wrapper](https://github.com/tpope/vim-fugitive)
* `:Git branch`
* `:Git checkout master`
* [more info](https://github.com/tpope/vim-fugitive#fugitivevim)

0 comments on commit fd714b1

Please sign in to comment.