25 lines
438 B
VimL
25 lines
438 B
VimL
call plug#begin('~/.local/share/nvim/plugged')
|
|
|
|
Plug 'neoclide/coc.nvim', {'branch': 'release'}
|
|
Plug 'scrooloose/nerdtree'
|
|
Plug 'jiangmiao/auto-pairs'
|
|
|
|
Plug 'jsit/vim-tomorrow-theme'
|
|
|
|
call plug#end()
|
|
|
|
" Show line numbers
|
|
set number
|
|
|
|
" Use 4 spaces for identation
|
|
set expandtab
|
|
set shiftwidth=4
|
|
set softtabstop=4
|
|
|
|
" Set color theme
|
|
set termguicolors
|
|
color Tomorrow-Night-Bright
|
|
|
|
" Toggle NERDTree with Ctrl+n
|
|
map <C-n> :NERDTreeToggle<CR>
|