Skip to content

Instantly share code, notes, and snippets.

@bgonzales12
Last active October 5, 2020 20:35
Show Gist options
  • Save bgonzales12/94b376a9e1d9f97b5745f63f4c85d50e to your computer and use it in GitHub Desktop.
Save bgonzales12/94b376a9e1d9f97b5745f63f4c85d50e to your computer and use it in GitHub Desktop.
NVim Config with Vim-Plug
"Directory ~/.config/nvim
set number
set expandtab
set autoindent
set softtabstop=4
set shiftwidth=2
set tabstop=4
"Enable mouse click for nvim
set mouse=a
"Fix cursor replacement after closing nvim
set guicursor=
"Shift + Tab does inverse tab
inoremap <S-Tab> <C-d>
"See invisible characters
set list listchars=tab:>\ ,trail:+,eol:$
call plug#begin()
Plug 'Shougo/deoplete.nvim', { 'do': ':UpdateRemotePlugins' }
Plug 'mattn/emmet-vim'
Plug 'scrooloose/nerdTree'
Plug 'ctrlpvim/ctrlp.vim'
Plug 'bling/vim-airline'
Plug 'jiangmiao/auto-pairs'
Plug 'altercation/vim-colors-solarized'
call plug#end()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment