Skip to content

Instantly share code, notes, and snippets.

@eugenemtn
Last active July 28, 2020 05:55
Show Gist options
  • Save eugenemtn/4f34260372223d193d8bc3cf24fe7e4e to your computer and use it in GitHub Desktop.
Save eugenemtn/4f34260372223d193d8bc3cf24fe7e4e to your computer and use it in GitHub Desktop.
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'
" The following are examples of different formats supported.
" Keep Plugin commands between vundle#begin/end.
" plugin on GitHub repo
Plugin 'tpope/vim-fugitive'
" plugin from http://vim-scripts.org/vim/scripts.html
" Plugin 'L9'
Plugin 'ctrlpvim/ctrlp.vim'
" Highlight vue SFC
Plugin 'posva/vim-vue'
" Hardtime plugin to disable arrow keys
Plugin 'takac/vim-hardtime'
" Typescript syntax higlight
Plugin 'leafgarland/typescript-vim'
" Install L9 and avoid a Naming conflict if you've already installed a
" different version somewhere else.
" Plugin 'ascenator/L9', {'name': 'newL9'}
Plugin 'mattn/emmet-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
let g:ctrlp_custom_ignore = {
\ 'dir': '\v[\/](\.(git|hg|svn)|(node_modules))$',
\ }
" Diable only arrow keys for vim hardtime
let g:hardtime_default_on = 1
let g:list_of_normal_keys = ["-", "+", "<UP>", "<DOWN>", "<LEFT>", "<RIGHT>"]
let g:list_of_visual_keys = ["-", "+", "<UP>", "<DOWN>", "<LEFT>", "<RIGHT>"]
set showcmd " Show (partial) commands in status line
" For indents that consist of 4 space characters but are entered with the tab
" key
set tabstop=2 softtabstop=0 expandtab shiftwidth=2 smarttab
inoremap jk <Esc>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment