More vim improvements and other small fixes

This commit is contained in:
jfm 2018-06-07 19:09:04 +02:00
parent b74638bdca
commit 33fa881a62
3 changed files with 14 additions and 4 deletions

View File

@ -25,4 +25,5 @@ stow -t ~ newsboat
stow -t ~ sublime stow -t ~ sublime
stow -t ~ bash stow -t ~ bash
stow -t ~ vim stow -t ~ vim
stow -t ~ powerline
~~~ ~~~

View File

@ -3,7 +3,12 @@
#rofi.font: "Roboto 10" #rofi.font: "Roboto 10"
rofi.lines: 5 rofi.lines: 5
rofi.color-enabled: true rofi.color-enabled: true
rofi.color-window: #16a085, #16a085, #1e2529 #rofi.color-window: #16a085, #16a085, #1e2529
rofi.color-normal: #16a085, #424242, #16a085 #rofi.color-normal: #16a085, #424242, #16a085
rofi.color-active: #16a085, #424242, #16a085 #rofi.color-active: #16a085, #424242, #16a085
rofi.color-urgent: #16a085, #424242, #16a085 #rofi.color-urgent: #16a085, #424242, #16a085
rofi.color-window: #dd002b36, #002b36, #dd073642
rofi.color-normal: #dd002b36, #839496, #00002b36, #dd073642, #859900
rofi.color-active: #dd002b36, #268bd2, #00002b36, #dd073642, #268bd2
rofi.color-urgent: #dd002b36, #d33682, #00002b36, #dd073642, #d33682

View File

@ -19,6 +19,10 @@ filetype indent on
:imap <c-s> <Esc>:w<CR>a :imap <c-s> <Esc>:w<CR>a
nnoremap <F7> :tabp<CR> nnoremap <F7> :tabp<CR>
nnoremap <F8> :tabn<CR> nnoremap <F8> :tabn<CR>
nnoremap <F9> :bp<CR>
nnoremap <F10> :bn<CR>
map <C-n> :NERDTreeToggle<CR> map <C-n> :NERDTreeToggle<CR>
au BufWinEnter * set number au BufWinEnter * set number
autocmd StdinReadPre * let s:std_in=1
autocmd VimEnter * if argc() == 0 && !exists("s:std_in") | NERDTree | endif