Skip to content

Instantly share code, notes, and snippets.

@davmrv
Last active May 9, 2020 02:23
Show Gist options
  • Save davmrv/cc13f24019a7fb3d268596741da19f55 to your computer and use it in GitHub Desktop.
Save davmrv/cc13f24019a7fb3d268596741da19f55 to your computer and use it in GitHub Desktop.
syntax enable
set tabstop=2
set softtabstop=2
set shiftwidth=2
set expandtab
set showcmd
set cursorline
filetype indent on
set wildmenu
set showmatch
set number
set t_Co=256
set background=dark
colorscheme PaperColor
set incsearch
set hlsearch
set foldenable
set foldlevelstart=10
set foldnestmax=10
set foldmethod=indent
set formatoptions-=cro
nnoremap j gj
nnoremap k gk
map<C-n> :NERDTreeToggle<CR>
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 'w0rp/ale'
Plugin 'tpope/vim-fugitive'
Plugin 'scrooloose/nerdtree'
Plugin 'ctrlpvim/ctrlp.vim'
Plugin 'flazz/vim-colorschemes'
Plugin 'raimondi/delimitmate'
Plugin 'bling/vim-airline'
Plugin 'briancollins/vim-jst'
Plugin 'pangloss/vim-javascript'
Plugin 'mattn/emmet-vim'
Plugin 'ervandew/supertab'
Plugin 'yggdroot/indentline'
Plugin 'mxw/vim-jsx'
Plugin 'posva/vim-vue'
Plugin 'joonty/vdebug'
Plugin 'yukpiz/vim-volt-syntax'
" 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
" Ctrlp
let g:ctrlp_custom_ignore = 'node_modules\|DS_Store\|git|vendor'
" Vdebug
let g:vdebug_options = {
\ 'break_on_open': 0,
\ 'path_maps': {'/fuse/app': '/home/dmaravilla/PhpstormProjects/fuse-retail'},
\ 'port': 9002
\ }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment