Skip to content

Instantly share code, notes, and snippets.

@arthurmco
Created April 4, 2018 20:03
Show Gist options
  • Save arthurmco/6ed1c4b12cb309a5c30e614af95010ae to your computer and use it in GitHub Desktop.
Save arthurmco/6ed1c4b12cb309a5c30e614af95010ae to your computer and use it in GitHub Desktop.
mv neovim config file
set nocompatible
filetype plugin indent on
syntax on
" set the runtime path for vundle
set rtp+=~/.vim/bundle/Vundle.vim
" start vundle environment
call vundle#begin()
" list of plugins {{{2
" let Vundle manage Vundle (this is required)
"old: Plugin 'gmarik/Vundle.vim'
Plugin 'VundleVim/Vundle.vim'
Plugin 'nvie/vim-flake8'
Plugin 'mattn/emmet-vim'
Plugin 'HerringtonDarkholme/yats.vim'
"Plugin 'mhartington/nvim-typescript'
"Plugin 'baabelfish/nvim-nim'
" add plugins before this
call vundle#end()
set termguicolors
set number
" My options
set tabstop=4
set shiftwidth=4
set smartindent
colorscheme desert
:tnoremap <Esc> <C-\><C-n>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment