diff options
-rw-r--r-- | .kshrc | 1 | ||||
-rw-r--r-- | .vimrc | 3 | ||||
-rw-r--r-- | stylus/godocs_wide.css | 6 |
3 files changed, 10 insertions, 0 deletions
@@ -90,3 +90,4 @@ function fd { export SHELL="ksh" export PATH=$PATH:/home/devi/scripts/bin export PATH=$PATH:/home/devi/bin +export GOPROXY=https://goproxy.io @@ -534,6 +534,8 @@ cnoremap <C-e> <End> " nnoremap gj j nmap <leader>m :make<CR> nmap <leader>sh :so $VIMRUNTIME/syntax/hitest.vim<CR> +nmap <c-q> :e #<cr> +vmap <c-q> :e #<cr> nmap [q :col<CR> nmap ]q :cnew<CR> @@ -1504,6 +1506,7 @@ hi CtrlSpaceNormal ctermfg=36 ctermbg=NONE hi CtrlSpaceSelected ctermbg=27 ctermfg=15 hi CtrlSpaceSearch ctermfg=25 ctermbg=NONE hi CtrlSpaceStatusLine ctermfg=99 ctermbg=NONE cterm=bold +let g:CtrlSpaceSetDefaultMapping = 1 "vim-go let g:go_auto_sameids = 0 diff --git a/stylus/godocs_wide.css b/stylus/godocs_wide.css new file mode 100644 index 0000000..509bb69 --- /dev/null +++ b/stylus/godocs_wide.css @@ -0,0 +1,6 @@ +@-moz-document domain("godocs.io") { + body > main:nth-child(2) > div:nth-child(1) { + width: 90%; + max-width: 90%; + } +} |