Skip to content

Instantly share code, notes, and snippets.

@alexanderGugel
Created June 20, 2020 23:19
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save alexanderGugel/e8d0e7e0bd231628b473c3afc39aabb4 to your computer and use it in GitHub Desktop.
Save alexanderGugel/e8d0e7e0bd231628b473c3afc39aabb4 to your computer and use it in GitHub Desktop.
" Make backspace behave in a sane manner.
set backspace=indent,eol,start
" Switch syntax highlighting on.
syntax on
" Enable file type detection and do language-dependent indenting.
filetype plugin indent on
set runtimepath^=~/.config/nvim/bundle/ctrlp.vim
set runtimepath^=~/.config/nvim/bundle/vim-airline
set runtimepath^=~/.config/nvim/bundle/vim-airline-themes
set runtimepath^=~/.config/nvim/bundle/vim-go
set runtimepath^=~/.config/nvim/bundle/AutoComplPop
set runtimepath^=~/.config/nvim/bundle/nerdtree
" Change airline theme.
let g:airline_theme = 'light'
" Ignore .gitignore entries.
let g:ctrlp_user_command = ['.git', 'sh -c "cd %s && git ls-files -co --exclude-standard"']
" Display line numbers.
set number
" set spell spelllang=en_us
set mouse=a
autocmd VimEnter * NERDTree
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment