mirror of
https://github.com/elenapan/dotfiles.git
synced 2026-01-15 11:08:00 +08:00
15 lines
359 B
VimL
15 lines
359 B
VimL
set number
|
|
set t_Co=256
|
|
|
|
colorscheme DarkDefault
|
|
|
|
call plug#begin('$HOME/.config/nvim/plugged')
|
|
"Plug 'shougo/deoplete.nvim', { 'do': ':UpdateRemotePlugins' }
|
|
Plug 'shougo/deoplete.nvim'
|
|
Plug 'tpope/vim-sensible'
|
|
call plug#end()
|
|
|
|
let g:deoplete#enable_at_startup = 1
|
|
inoremap <expr><tab> pumvisible() ? "\<c-n>" : "\<tab>"
|
|
nnoremap <esc> :noh<return><esc>
|
|
|