update neovim config
This commit is contained in:
parent
3e86e2f297
commit
d1abb95b99
@ -1,5 +1,29 @@
|
|||||||
|
|
||||||
call plug#begin('~/.vim/plugged')
|
call plug#begin('~/.local/share/nvim/plugged')
|
||||||
" Plugin Section
|
Plug 'davidhalter/jedi-vim'
|
||||||
|
Plug 'Shougo/deoplete.nvim', { 'do': ':UpdateRemotePlugins' }
|
||||||
|
Plug 'zhou13/vim-easyescape'
|
||||||
|
Plug 'zchee/deoplete-jedi'
|
||||||
|
Plug 'vim-airline/vim-airline'
|
||||||
|
Plug 'jiangmiao/auto-pairs'
|
||||||
|
Plug 'scrooloose/nerdcommenter'
|
||||||
|
Plug 'terryma/vim-multiple-cursors'
|
||||||
|
Plug 'scrooloose/nerdtree'
|
||||||
|
Plug 'morhetz/gruvbox'
|
||||||
call plug#end()
|
call plug#end()
|
||||||
"Config Section
|
"Config Section
|
||||||
|
set number
|
||||||
|
let g:deoplete#enable_at_startup = 1
|
||||||
|
let g:airline_powerline_fonts = 1
|
||||||
|
let mapleader = "\<Space>"
|
||||||
|
let g:easyescape_chars = { "j": 1, "k": 1 }
|
||||||
|
let g:easyescape_timeout = 100
|
||||||
|
inoremap jk <esc>
|
||||||
|
inoremap kj <esc>
|
||||||
|
map <C-n> :NERDTreeToggle<CR>
|
||||||
|
set ignorecase
|
||||||
|
set smartcase
|
||||||
|
set mouse=a
|
||||||
|
colorscheme gruvbox
|
||||||
|
set background=dark " use dark mode
|
||||||
|
set ts=4
|
||||||
|
Loading…
Reference in New Issue
Block a user