aboutsummaryrefslogtreecommitdiff
path: root/dotfiles/arch/.vimperatorrc
diff options
context:
space:
mode:
Diffstat (limited to 'dotfiles/arch/.vimperatorrc')
-rw-r--r--dotfiles/arch/.vimperatorrc44
1 files changed, 44 insertions, 0 deletions
diff --git a/dotfiles/arch/.vimperatorrc b/dotfiles/arch/.vimperatorrc
new file mode 100644
index 0000000..51e2404
--- /dev/null
+++ b/dotfiles/arch/.vimperatorrc
@@ -0,0 +1,44 @@
+" Color scheme
+colorscheme simple-highlight
+
+" Set hintchars to alphbet
+set hintchars=hjklasdfgyuiopqwertnmzxcvb
+
+" No navigation
+set gui=nonavigation
+
+" Leader key
+let mapleader=";"
+
+" passthrough
+set passthrough=true
+
+" Disable fucking bell
+set visualbell=true
+" set runtimepath+=~/.vimperator/vimperator-plugins
+
+" Make Firefox run faster by using JIT
+" set! javascript.options.jit.chrome=true
+
+" Ctrl-a
+inoremap <C-a> <C-Home><C-S-End>
+
+" scroll down/up half page
+noremap d <C-d>
+noremap e <C-u>
+
+" Jump to tab
+noremap <S-k> <C-p>
+"Jump to next or by the tab number
+noremap <S-j> gt
+
+" Colse the current tab
+noremap x d
+noremap <BS> <C-o>
+
+" Open debug
+noremap <leader>f <F12>
+
+" Sometimes when you need navigation bar
+noremap <leader>nn :set gui=nonavigation<CR>
+noremap <leader>n :set gui=navigation<CR>