Skip to content

Commit

Permalink
feat(vim): install plugins and update config
Browse files Browse the repository at this point in the history
  • Loading branch information
tagoro9 committed Apr 9, 2021
1 parent 68cd9c2 commit 7ab8a23
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions vimrc
Original file line number Diff line number Diff line change
Expand Up @@ -6,15 +6,24 @@ Plug 'tpope/vim-sensible'
Plug 'elzr/vim-json'
Plug 'tpope/vim-fugitive'
Plug 'arcticicestudio/nord-vim'
Plug 'itchyny/lightline.vim'
Plug 'dense-analysis/ale'
Plug 'sheerun/vim-polyglot'
Plug 'preservim/nerdtree'

call plug#end()

" Enable color theme
colorscheme nord

syntax on

" Show line numbers
set number

set exrc " .vimrc in local project dir
set secure

" Enable 256 colors
if exists('+termguicolors')
let &t_8f = "\<Esc>[38;2;%lu;%lu;%lum"
Expand Down

0 comments on commit 7ab8a23

Please sign in to comment.