diff options
| author | Mitch Riedstra <mitch@riedstra.us> | 2019-09-21 12:44:34 -0400 |
|---|---|---|
| committer | Mitch Riedstra <mitch@riedstra.us> | 2019-09-21 12:44:34 -0400 |
| commit | 709accc8e4f6dc3c21fc9b55e9fcc31559c68472 (patch) | |
| tree | 924f41bd3047921da27a999026a1be0f7b35b5ea /plugin/airline.vim | |
| parent | 314989ba7e969d353aa3a96454b03c2f5ff6511b (diff) | |
| download | vim-cfg-709accc8e4f6dc3c21fc9b55e9fcc31559c68472.tar.gz vim-cfg-709accc8e4f6dc3c21fc9b55e9fcc31559c68472.tar.xz | |
Re-arrange the vim configuration
Diffstat (limited to 'plugin/airline.vim')
| -rw-r--r-- | plugin/airline.vim | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/plugin/airline.vim b/plugin/airline.vim new file mode 100644 index 0000000..4486d50 --- /dev/null +++ b/plugin/airline.vim @@ -0,0 +1,15 @@ +" Always show status line +" set laststatus=2 + +" Enable the list of buffers +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']) |
