- Change iterm2 theme to solarized
- ohmyzsh/ohmyzsh#4756
- https://github.com/powerline/fonts
- change the fonts in iterm
- https://github.com/zsh-users/zsh-autosuggestions
- add to .zshrc: plugins=(git zsh-autosuggestions)
- bindkey '^[[Z' # rebind autocomplete to Shift+Tab
set nocompatible " be iMproved, required 2 filetype off " required 3 set rtp+=~/.vim/bundle/vundle/ 4 5 call vundle#begin() 6 Plugin 'VundleVim/Vundle.vim' 7 Plugin 'scrooloose/syntastic' "syntax and errors highlighter 8 Plugin 'tpope/vim-fugitive' "Git wrapper for vim 9 Plugin 'kien/ctrlp.vim' " Fuzzy file search for vim buffers 10 Plugin 'godlygeek/tabular' 11 Plugin 'rking/ag.vim' 12 " Colorschemes 13 Plugin 'flazz/vim-colorschemes' 14 15 " 16 " Editing 17 " 18 Plugin 'tpope/vim-surround' 19 20 " 21 " Navigation 22 " 23 Plugin 'scrooloose/nerdtree' 24 Plugin 'majutsushi/tagbar' 25 26 27 call vundle#end() 28 filetype plugin indent on " load filetype plugins/indent settings 29 syntax on " enable syntax 30 31 " Setting up Vundle - the vim plugin bundler end 32 33 34 " user custom settings 35 let mapleader = ',' 36 set tabstop=2 " number of visual spaces per TAB 37 set softtabstop=2 " number of spaces in tab when editing 38 set expandtab " tabs are spaces 39 set number " show line numbers 40 set showcmd " show command in bottom bar 41 set showmatch " highlight matching pairs 42 set incsearch " show search matches while searching 43 set hlsearch " search with highlighting 44 colorscheme molokai 45 46 47 " NerdTree settings 48 map n :NERDTreeToggle 49 50 51 " CtrlP setting 52 let g:ctrlp_map = 'f' 53 let g:ctrlp_user_command = { 54 \ 'types': { 55 \ 1: ['.git', 'cd %s && git ls-files --cached --exclude-standard --others'] 56 \ }, 57 \ 'fallback': 'ag %s -l --nocolor -g ""' 58 \ }