Skip to content

Instantly share code, notes, and snippets.

@TylerLeite
Last active December 7, 2020 05:41
Show Gist options
  • Save TylerLeite/9cc033b2c09e3d946453db8a456ebf14 to your computer and use it in GitHub Desktop.
Save TylerLeite/9cc033b2c09e3d946453db8a456ebf14 to your computer and use it in GitHub Desktop.
execute pathogen#infect()
syntax on
filetype plugin on
set clipboard=unnamed
set mouse=a
noremap <Up> <NOP>
noremap <Down> <NOP>
noremap <Left> <NOP>
noremap <Right> <NOP>
:vnoremap U <NOP>
:nnoremap U <NOP>
" nerdtree
map <C-\> :NERDTreeToggle<CR>
set number
set rnu
set linebreak
set showbreak=+++
set textwidth=80
set showmatch
set visualbell
set hlsearch
set smartcase
set ignorecase
set incsearch
filetype indent off
set autoindent
set smartindent
set expandtab
set shiftwidth=2
set softtabstop=2
set tabstop=2
let g:indentLine_char_list = ['|', '¦', '┆', '┊']
set ruler
set undolevels=1000
set backspace=indent,eol,start
set list
set listchars=tab:>-
let g:ctrlp_max_files=0
let g:ctrlp_custom_ignore = 'node_modules\|DS_Store\|git\|env*/'
set completeopt-=preview
let &t_SI = "\e[3 q"
let &t_EI = "\e[5 q"
git clone https://github.com/ervandew/supertab
git clone https://github.com/kien/ctrlp.vim
git clone https://github.com/scrooloose/nerdtree
git clone https://github.com/mg979/vim-visual-multi
git clone https://github.com/yggdroot/indentline
git clone https://github.com/tpope/vim-surround
git clone https://github.com/tpope/vim-fugitive
git clone https://github.com/preservim/nerdcommenter.git
git clone https://github.com/shougo/vimproc.vim
git clone https://github.com/scrooloose/syntastic
git clone https://github.com/valloric/youcompleteme
git clone https://github.com/tpope/vim-commentary
git clone https://github.com/altercation/vim-colors-solarized
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment