Razie's Ubuntu Setup

It takes a lot of experimenting to setup a nice development environment.

Here's my current setup.

VI

I love vi. Period.

Install vim, plus:

This is my overall patter in using it:

  • F2 to spawn a tree explorer
  • Ctrl-ww to switch windows
  • o - open file
  • t - open file in new tab
  • :q to quit temp file in tab

Here's my ~/.vimrc

colorscheme dw_orange

let treeExplVertical=1
let treeExplWinSize=35
let treeExplDirSort=1
let treeExplNoList=1
:nmap <F2> :VSTreeExplore<cr>

:nmap <C-S-tab> :tabprevious<cr>
:nmap <C-tab> :tabnext<cr>
:imap <C-S-tab> <ESC>:tabprevious<cr>i
:imap <C-tab> <ESC>:tabnext<cr>i
:nmap <C-t> :tabnew<cr>
:imap <C-t> <ESC>:tabnew<cr>i
":map <C-w> :tabclose<cr>

set tabstop=2
set shiftwidth=2
set expandtab
set softtabstop=2
set autoindent

"http://genotrance.wordpress.com/2008/02/04/my-vim-customization/
Unless otherwise stated, the content of this page is licensed under Creative Commons Attribution-ShareAlike 3.0 License