From 709accc8e4f6dc3c21fc9b55e9fcc31559c68472 Mon Sep 17 00:00:00 2001 From: Mitch Riedstra Date: Sat, 21 Sep 2019 12:44:34 -0400 Subject: Re-arrange the vim configuration --- plugin/airline.vim | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 plugin/airline.vim (limited to 'plugin/airline.vim') 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']) -- cgit v1.2.3