Last active
January 27, 2020 00:14
-
-
Save zworek/881cfb152a7720ce5bbc2ce638d3e803 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
alias tmux="TERM=screen-256color-bce tmux" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
setw -g mode-keys vi | |
set -g default-terminal "xterm" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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