Skip to content

Instantly share code, notes, and snippets.

@zworek
Last active January 27, 2020 00:14
Show Gist options
  • Save zworek/881cfb152a7720ce5bbc2ce638d3e803 to your computer and use it in GitHub Desktop.
Save zworek/881cfb152a7720ce5bbc2ce638d3e803 to your computer and use it in GitHub Desktop.
alias tmux="TERM=screen-256color-bce tmux"
setw -g mode-keys vi
set -g default-terminal "xterm"
set tabstop=2
set expandtab
set shiftwidth=2
set autoindent
set smartindent
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'
" vim snipmate..
Plugin 'MarcWeber/vim-addon-mw-utils'
Plugin 'tomtom/tlib_vim'
Plugin 'garbas/vim-snipmate'
Plugin 'qpkorr/vim-renamer'
Plugin 'scrooloose/nerdtree'
Plugin 'isRuslan/vim-es6'
Plugin 'mxw/vim-jsx' " react syntax
let g:jsx_ext_required = 1 " only for jsx
Plugin 'tpope/vim-fugitive'
Plugin 'leafgarland/typescript-vim'
set t_Co=256 " better color support - also fix for powerline on git-bash
Plugin 'tomasiser/vim-code-dark' " 'jacoborus/tender.vim' color scheme, set up after vundle#end()
Plugin 'powerline/powerline'
Plugin 'vim-airline/vim-airline'
Plugin 'vim-airline/vim-airline-themes'
let g:airline_powerline_fonts = 1 " nicer arrows with right font!
let g:airline#extensions#tabline#enabled = 1
let g:airline_theme = 'codedark'
call vundle#end() " required
filetype plugin indent on " required
syntax enable
colorscheme codedark
set statusline+=%{fugitive#statusline()}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment