Last active
October 5, 2020 20:35
-
-
Save bgonzales12/94b376a9e1d9f97b5745f63f4c85d50e to your computer and use it in GitHub Desktop.
NVim Config with Vim-Plug
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
"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