aboutsummaryrefslogtreecommitdiffstats
path: root/.vimrc
diff options
context:
space:
mode:
authorterminaldweller <thabogre@gmail.com>2021-12-17 13:55:13 +0000
committerterminaldweller <thabogre@gmail.com>2021-12-17 13:55:13 +0000
commitadc0b312110d800debc7ad964ee963b2590a7897 (patch)
treee31b7f8ce97b77c617ed1d20d9c17f22104bc57f /.vimrc
parentupdate for keymappings for xcape (diff)
downloadscripts-adc0b312110d800debc7ad964ee963b2590a7897.tar.gz
scripts-adc0b312110d800debc7ad964ee963b2590a7897.zip
update
Diffstat (limited to '.vimrc')
-rw-r--r--.vimrc11
1 files changed, 6 insertions, 5 deletions
diff --git a/.vimrc b/.vimrc
index 1f1f624..3f9be4b 100644
--- a/.vimrc
+++ b/.vimrc
@@ -255,7 +255,7 @@ let g:jellybeans_overrides = {
\ 'Todo': { 'guifg': '000000', 'guibg': '00cc00',
\ 'ctermfg': 'Black', 'ctermbg': 'Blue',
\ 'attr': 'bold' },
-\ 'Comment': { 'guifg': '339966' },
+\ 'Comment': { 'guibg': '339966', 'guifg': '000000' },
\ 'background': { "guibg": "000000", "ctermbg":"none"},
\ 'StorageClass': {"guifg": '9966ff' },
\ 'PreCondit': {"guifg": '5f87ff' },
@@ -303,7 +303,7 @@ function! s:shortenPath(path)
endfunction
"airline options
-let g:airline_powerline_fonts = 0
+let g:airline_powerline_fonts = 1
let s:airline_custom_cwd = s:shortenPath(expand('%:p'))
try
let g:airline#extensions#tabline#enabled = 1
@@ -1028,7 +1028,7 @@ function! s:compiler_explorer()
set syntax=nasm
1
endfunction
-command! -complete=shellcmd -nargs=0 CompilerExplorer call s:compiler_explorer()
+" command! -complete=shellcmd -nargs=0 CompilerExplorer call s:compiler_explorer()
vmap <S-F9> :<C-U>CompilerExplorer<cr>
"view the python docs for the word under cursor in a split window
@@ -1041,7 +1041,7 @@ function! s:pythondoc()
set syntax=man
1
endfunction
-command! -complete=shellcmd -nargs=0 PythonDoc call s:pythondoc()
+" command! -complete=shellcmd -nargs=0 PythonDoc call s:pythondoc()
nnoremap <leader>h :<C-U>PythonDoc<cr>
vnoremap <leader>h :<C-U>PythonDoc<cr>
@@ -1089,6 +1089,7 @@ iab coutn count
iab accoutn account
iab applciation application
iab cosnt const
+iab ehco echo
"netrw
let g:netrw_sort_by = 'date'
@@ -1545,7 +1546,7 @@ function! s:tldrdoc()
let l:vword = expand("<cword>")
call tldr#run(l:vword)
endfunction
-command! -complete=shellcmd -nargs=0 TLDRDoc call s:tldrdoc()
+" command! -complete=shellcmd -nargs=0 TLDRDoc call s:tldrdoc()
nnoremap <leader>tt :<C-U>TLDRDoc<cr>
vnoremap <leader>tt :<C-U>TLDRDoc<cr>