dotfiles

My personal shell configs and stuff
git clone git://git.alex.balgavy.eu/dotfiles.git
Log | Files | Refs | Submodules | README | LICENSE

commit d00e106a375ed1b4c26570a7534b98fbcb6d979d
parent 6284221a023c04d152cb55a409e5c5fc3846ad07
Author: Alex Balgavy <a.balgavy@gmail.com>
Date:   Thu, 23 Aug 2018 17:14:48 +0200

Plugin & command to show xterm colors in vim

Diffstat:
Mdotfiles/vim-config/commands.vimrc | 2+-
Mdotfiles/vim-config/plugins.vimrc | 4++++
2 files changed, 5 insertions(+), 1 deletion(-)

diff --git a/dotfiles/vim-config/commands.vimrc b/dotfiles/vim-config/commands.vimrc @@ -28,4 +28,4 @@ cnoreabbrev W w cnoreabbrev Q q cnoreabbrev Qall qall cnoreabbrev E Explore - +cnoreabbrev Colors XtermColorTable diff --git a/dotfiles/vim-config/plugins.vimrc b/dotfiles/vim-config/plugins.vimrc @@ -4,6 +4,10 @@ if empty(glob('~/.vim/autoload/plug.vim')) endif call plug#begin('~/.vim/plugged') + +" A color table with xterm color codes +Plug 'guns/xterm-color-table.vim' + " NERDTree - file browser Plug 'scrooloose/nerdtree'