This file contains 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 nocompatible | |
set backspace=indent,eol,start whichwrap+=<,>,[,] | |
set history=50 | |
set incsearch | |
set hlsearch | |
set background=dark | |
colors ir_black | |
vnoremap <BS> d | |
filetype on | |
filetype plugin on | |
filetype indent on | |
set tabstop=2 | |
set shiftwidth=2 | |
set softtabstop=2 | |
set expandtab | |
set noautoindent | |
set nosmartindent | |
set ruler | |
set number | |
set hidden | |
set visualbell | |
set tags=tags;/ | |
set wildmode=list:longest | |
" From Cameron McBride, via gmail | |
set formatoptions=tcqronwl " see :help fo-table | |
let g:spacehi_tabcolor="ctermfg=red cterm=underline guifg=#ff0000 guibg=red gui=underline" | |
let g:spacehi_spacecolor="ctermfg=yellow cterm=underline guifg=#00ffff guibg=yellow gui=underline" | |
syntax on | |
nnoremap <space> za | |
nmap <silent> <D-[> <ESC>:bp<CR> | |
nmap <silent> <D-]> <ESC>:bn<CR> | |
nmap <silent> <Leader>] :tselect<CR> | |
nmap <silent> <Leader>[ :pop<CR> | |
nmap <silent> <C-Right> <C-w>l | |
nmap <silent> <C-Left> <C-w>h | |
nmap <silent> <C-Up> <C-w>k | |
nmap <silent> <C-Down> <C-w>j |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment