Skip to content

Instantly share code, notes, and snippets.

@gamingrobot
Created May 15, 2014 07:13
Show Gist options
  • Save gamingrobot/7185b7471196e4af5fcb to your computer and use it in GitHub Desktop.
Save gamingrobot/7185b7471196e4af5fcb to your computer and use it in GitHub Desktop.
execute pathogen#infect()
filetype plugin indent on
set number
set autoindent
syntax enable
set background=dark
set t_Co=256
colorscheme molokai
set background=dark
set mouse=a
command Make :silent make | redraw! | copen
"nerdtree
let g:nerdtree_tabs_open_on_console_startup=1
"let NERDTreeMapOpenInTab='<ENTER>'
"conque
command Shell :set nolist | ConqueTermSplit bash
let g:ConqueTerm_EscKey = '<Esc>'
let g:ConqueTerm_TERM = 'xterm'
let g:ConqueTerm_CWInsert = 1
"airline
let g:airline_powerline_fonts = 1
let g:airline#extensions#tabline#enabled = 1
let g:airline#extensions#whitespace#enabled = 0
"Better window Navigation
noremap <C-Left> <C-W><Left>
noremap <C-Right> <C-W><Right>
noremap <C-Up> <C-W><Up>
noremap <C-Down> <C-W><Down>
"buffer switching
noremap <C-l> :bnext<CR>
noremap <C-h> :bprevious<CR>
"hexedit
command HexD :%!xxd
command HexE :%!xxd -r
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment