Grimoire-
Command
.es

GNU+Linux command memo

vim : airline

airline est un module de vim qui ajoute une, voire deux, barre(s) à l’interface de l’éditeur. La barre principale (en bas) détaille l’état du fichier courant et la 2e liste les buffers ouverts.

# apt install vim vim-airline fonts-powerline (1)
$ vi ~/.vimrc
1 Or install from the sources.
set laststatus=2  " always display statusline
let g:airline_powerline_fonts = 1  " use dedicated fonts for symbols
let g:airline#extensions#tabline#enabled = 1  " display the buffer list at the top
map <A-Left> :bp<cr>  " Alt + Left arrow goes to the previous buffer
map <A-Right> :bn<cr>  " Alt + Right arrow goes to the next buffer
$ vi *.py
:b vie  " show buffer `view.py` if opened and not conflicting with other file name