apt update && apt install powerline powerline-gitstatus vim-airline vim-airline-themes vim-fugitive
add these lines to the bottom of /etc/bash.bashrc
if [ -f /usr/share/powerline/bindings/bash/powerline.sh ]; then
powerline-daemon -q
POWERLINE_BASH_CONTINUATION=1
POWERLINE_BASH_SELECT=1
source /usr/share/powerline/bindings/bash/powerline.sh
fi
add these lines to the bottom of /etc/fish/config.fish
set fish_function_path $fish_function_path "/usr/share/powerline/bindings/fish"
source /usr/share/powerline/bindings/fish/powerline-setup.fish
powerline-setup
add these lines to the bottom of ~/.tmux.conf
set -g default-terminal "screen-256color"
set-option -ga terminal-overrides ",*256col*:Tc"
source "/usr/share/powerline/bindings/tmux/powerline.conf"
add these lines to the bottom of /etc/vim/vimrc
set laststatus=2
set showtabline=2
set noshowmode
set t_Co=256
set termguicolors
let g:airline_theme="luna" "you may like it
let g:airline_powerline_fonts = 1
let g:airline#extensions#tabline#enabled = 1
let g:airline#extensions#tabline#buffer_nr_show = 1

