Skip to content

Instantly share code, notes, and snippets.

@xvrdm
Last active November 2, 2017 13:53
Show Gist options
  • Save xvrdm/c2eb60d54c6c552d326a6a9c2e4aa171 to your computer and use it in GitHub Desktop.
Save xvrdm/c2eb60d54c6c552d326a6a9c2e4aa171 to your computer and use it in GitHub Desktop.
test-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 plugin
"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 'airblade/vim-gitgutter'
Plugin 'itchyny/lightline.vim'
Plugin 'edkolev/tmuxline.vim'
Plugin 'christoomey/vim-tmux-navigator'
Plugin 'tpope/vim-commentary'
Plugin 'justinmk/vim-sneak'
Plugin 'junegunn/fzf', { 'dir': '~/.fzf', 'do': './install --all' }
Plugin 'junegunn/fzf.vim'
" Plugin 'lifepillar/vim-solarized8'
" Plugin 'dracula/dracula-theme'
" Plugin 'tomasr/molokai'
" All of your Plugins must be added before the following line
call vundle#end() " required
filetype plugin indent on " required
let g:gitgutter_sign_added = '●'
let g:gitgutter_sign_modified = '●'
let g:gitgutter_sign_removed = 'x'
" LightLine
set laststatus=2
let g:lightline = { 'colorscheme': 'PaperColor', }
set number
syntax on
nnoremap <c-j> <c-w>j
nnoremap <c-k> <c-w>k
nnoremap <c-h> <c-w>h
nnoremap <c-l> <c-w>l
let g:sneak#label = 1
set t_te=
let mapleader = ','
nmap ; :Buffers<CR>
nmap <Leader>t :Files<CR>
nmap <Leader>r :Tags<CR>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment