Posterous
Lukasz is using Posterous to post everything online. Shouldn't you?
Picnawode_thumb
 

plugawy blog

vim, coffee, web dev and stuff

11 Oct

Maximize VIM window

Use this little thingie:

(License: you can use this script only for GOOD, never for evil. If
you really must - contact me, we can talk about the price)

Comments [0]

4 Aug

Perfect vim indentation settings

" ~/.vimrc
set smartinden
set autoindent
set noexpandtab
set tabstop=4
set shiftwidth=4    
set softtabstop=4

These settings finally make my vim behave properly.

Comments [0]

3 Aug

!vim book from O'Reilly just got delivered :P

Comments [0]

25 Jul

Up and running

Comments [0]

17 Jul

Firefox-like tab naviagtion for VIM

  1. "vigation like firefox
  2. map <C-S-tab> :tabprevious<CR>
  3. nmap <C-tab> :tabnext<CR>
  4. map <C-S-tab> :tabprevious<CR>
  5. map <C-tab> :tabnext<CR>
  6. imap <C-S-tab> <Esc>:tabprevious<CR>i
  7. imap <C-tab> <Esc>:tabnext<CR>i
  8. nmap <C-t> :tabnew<CR>
  9. imap <C-t> <Esc>:tabnew<CR>

Comments [0]