Skip to content

Instantly share code, notes, and snippets.

@matthewrkula
Created December 14, 2019 19:32
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 matthewrkula/a2fbc495e17c70d6eb9290422546077e to your computer and use it in GitHub Desktop.
Save matthewrkula/a2fbc495e17c70d6eb9290422546077e to your computer and use it in GitHub Desktop.
syntax enable
colorscheme elflord
set expandtab
set tabstop=4
set softtabstop=4
set shiftwidth=4
set paste
set number
let mapleader = "\<Space>"
nnoremap <Leader>w :w<CR>
" VUNDLE START
set nocompatible " be iMproved, required
filetype off " required
set rtp+=~/.vim/bundle/Vundle.vim
call vundle#begin()
Plugin 'gmarik/Vundle.vim'
" plugin on GitHub repo
Plugin 'kien/ctrlp.vim'
Plugin 'Lokaltog/vim-easymotion'
Plugin 'altercation/vim-colors-solarized'
" All of your Plugins must be added before the following line
call vundle#end() " required
filetype plugin indent on " required
" VUNDLE END
au! BufRead,BufNewFile *.json set filetype=javascript
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment