Skip to content

Instantly share code, notes, and snippets.

@yogasukma
Created November 6, 2016 09:45
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 yogasukma/ed9b7b0daaeff64338555b6108460a4c to your computer and use it in GitHub Desktop.
Save yogasukma/ed9b7b0daaeff64338555b6108460a4c to your computer and use it in GitHub Desktop.
vimrc
set nocompatible " be iMproved, required
filetype off " required
" set the runtime path to include Vundle and initialize
set rtp+=~/.vim/bundle/Vundle.vim
call vundle#begin()
" alternatively, pass a path where Vundle should install plugins
"call vundle#begin('~/some/path/here')
"let Vundle manage Vundle, required
Plugin 'VundleVim/Vundle.vim'
Plugin 'taglist.vim'
Plugin 'kien/ctrlp.vim'
Plugin 'groenewege/vim-less'
Plugin 'scrooloose/nerdtree'
Plugin 'StanAngeloff/php.vim', { 'for': 'php' }
Plugin 'arnaud-lb/vim-php-namespace', { 'for' : 'php' }
Plugin 'jwalton512/vim-blade'
" THEMES
Plugin 'dracula/vim'
" All of your Plugins must be added before the following line
call vundle#end() " required
filetype plugin indent on " required
" To ignore plugin indent changes, instead use:
"filetype plugin on
"
" Brief help
" :PluginList - lists configured plugins
" :PluginInstall - installs plugins; append `!` to update or just
" :PluginUpdate
" :PluginSearch foo - searches for foo; append `!` to refresh local cache
" :PluginClean - confirms removal of unused plugins; append `!` to auto-approve removal
" see :h vundle for more details or wiki for FAQ
" Put your non-Plugin stuff after this line
color dracula
syntax on
set number
set tabstop=4
set shiftwidth=4
set expandtab
set nowrap
let g:ctrlp_map = '<c-p>'
let g:ctrlp_cmd = 'CtrlP'
let g:ctrlp_working_path_mode = 'ra'
let g:php_namespace_sort_after_insert = 1
let g:php_htmlInStrings = 1
nmap <leader>ne :NERDTree<cr>
noremap <Up> <NOP>
noremap <Down> <NOP>
noremap <Left> <NOP>
noremap <Right> <NOP>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment