dotfiles

Personal dotfiles
git clone git://git.laack.co/dotfiles.git
Log | Files | Refs

kakrc (597B)


      1 add-highlighter global/ number-lines -relative
      2 
      3 add-highlighter global/ show-matching
      4 
      5 colorscheme plain
      6 
      7 map global normal '<esc>' ';'
      8 map global normal ';' '<a-.>'
      9 map global goto '<down>' 'j'
     10 map global goto '<up>' 'k'
     11 
     12 map global goto '<left>' 'h'
     13 map global goto '<right>' 'l'
     14 
     15 map global insert <c-left> '<esc>b;i'
     16 map global insert <c-right> '<esc>w;i'
     17 
     18 map global insert <c-w> '<esc>bd;i'
     19 
     20 map global normal <c-left> 'b'
     21 map global normal <c-right> 'w'
     22 
     23 
     24 
     25 
     26 # Use system clipboard
     27 map global normal y '<a-|>xclip -i -selection clipboard<ret>'
     28 map global normal p '!xclip -o -sel clip<ret>'