Dotfiles for my tiling window manager + terminal workflow.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

46 lines
1.1 KiB

7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
  1. set relativenumber
  2. set background=dark
  3. " set t_Co=256
  4. filetype plugin on
  5. syntax on
  6. set tabstop=4
  7. set shiftwidth=4
  8. set autoindent
  9. set mouse=c
  10. set clipboard=unnamedplus
  11. autocmd VimResized * wincmd =
  12. " 'h/u3/c7/05/mokkar/.vim/plugged'
  13. " '~/.vim/plugged'
  14. " plug
  15. if empty(glob('~/.vim/autoload/plug.vim'))
  16. silent !curl -fLo ~/.vim/autoload/plug.vim --create-dirs
  17. \ https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim
  18. autocmd VimEnter * PlugInstall --sync | source $MYVIMRC
  19. endif
  20. call plug#begin('~/.vim/plugged')
  21. Plug 'vim-scripts/L9'
  22. Plug 'vim-scripts/FuzzyFinder'
  23. Plug 'whatyouhide/vim-gotham'
  24. Plug 'nathanaelkane/vim-indent-guides'
  25. Plug 'flazz/vim-colorschemes'
  26. Plug 'felixhummel/setcolors.vim'
  27. Plug '907th/vim-auto-save'
  28. " Plug 'artur-shaik/vim-javacomplete2'
  29. " autocmd FileType java setlocal omnifunc=javacomplete#Complete
  30. call plug#end()
  31. colorscheme gotham256
  32. map <F3> :wa<CR>
  33. map <F4> :wqa<CR>
  34. map <F5> :qa!<CR>
  35. map <F7> :AutoSaveToggle<CR>
  36. map <F10> :PlugInstall<CR>
  37. map <C-F1> :.,$s/:\(\w\)/: \1/g<CR>
  38. " map <Enter> o<ESC>
  39. " map <S-Enter> O<ESC>