Airline & Themes
Project address
Installation
" Install both plugins at the same time
Plug 'vim-airline/vim-airline' | Plug 'vim-airline/vim-airline-themes'
> Reload the config file to make it work, if that doesn't work try restarting Vim
You should now see a status bar displayed underneath Vim, displaying information that will typically contain **Current Mode**, **Current File**, **Current File**, **Current File**, **Current File**, and **Current File**.
**Current File**, **File Type**, **File Encoding**, and **Current Column Information**.
Since we also have the Airline Themes plugin installed, we can set the Airline style as follows.
> Execute `:AirlineTheme simple` to apply the `simple` style, or modify the `.vimrc` file to add a file like
> The following configuration:
```vim
let g:airline_theme='simple'Last updated