Browse Source

nvim: display hex color codes

refactor/nvim-lua
Garrit Franke 3 years ago
parent
commit
280d1d70fd
Signed by: garrit
GPG Key ID: 65586C4DDA55EA2C
  1. 1
      .config/nvim/autoload/sets.vim
  2. 4
      .config/nvim/plug.vim

1
.config/nvim/autoload/sets.vim

@ -19,3 +19,4 @@ set linebreak
set laststatus=2
set noshowmode
set nohlsearch
set termguicolors " For displaying color hex codes

4
.config/nvim/plug.vim

@ -29,4 +29,8 @@ Plug 'neoclide/coc.nvim', {'branch': 'release'}
" Antimony syntax highlighting
Plug 'antimony-lang/antimony.vim'
" Display color codes
Plug 'rrethy/vim-hexokinase', { 'do': 'make hexokinase' }
call plug#end()

Loading…
Cancel
Save