Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- call plug#begin('~/.config/nvim/plugged')
- Plug 'vim-airline/vim-airline'
- Plug 'jiangmiao/auto-pairs'
- Plug 'chriskempson/base16-vim'
- Plug 'vim-airline/vim-airline-themes'
- Plug 'prabirshrestha/asyncomplete.vim'
- Plug 'prabirshrestha/vim-lsp'
- Plug 'mattn/vim-lsp-settings'
- Plug 'prabirshrestha/asyncomplete-lsp.vim'
- call plug#end()
- set path+=**
- set wildmenu
- let g:airline#extensions#tabline#enabled = 1
- let g:airline_symbols_ascii = 1
- let g:airline_theme = 'base16'
- inoremap <expr> <Tab> pumvisible() ? "\<C-n>" : "\<Tab>"
- inoremap <expr> <S-Tab> pumvisible() ? "\<C-p>" : "\<S-Tab>"
- inoremap <expr> <cr> pumvisible() ? asyncomplete#close_popup() : "\<cr>"
- color base16-tomorrow-night
- set termguicolors
- hi Normal guibg=NONE ctermbg=NONE
- set number
- set expandtab " expand tab to space
- set shiftwidth=4
- set tabstop=4
- set autoindent
- set smarttab
- set showmatch
- set ignorecase
- set smartcase
- set virtualedit=block
- set gdefault
- set incsearch
- set inccommand=nosplit "preview for replace
- set fileencodings=utf8,euc-kr
- nnoremap n nzz
- nnoremap { {zz
- nnoremap } }zz
- nnoremap j gj
- nnoremap k gk
Advertisement
Add Comment
Please, Sign In to add comment