Browse Source

Add vim plugins, other minor settings

master
Taylor Bockman 9 years ago
parent
commit
e869f43f71
  1. 22
      dotfiles/vimrc
  2. BIN
      dotfiles/xmonad/xmonad-x86_64-linux
  3. 6
      dotfiles/xmonad/xmonad.hs
  4. BIN
      dotfiles/xmonad/xmonad.o

22
dotfiles/vimrc

@ -24,8 +24,8 @@ Plugin 'scrooloose/syntastic'
" Git
Plugin 'tpope/vim-fugitive'
" NERD Commenter
Plugin 'scrooloose/nerdcommenter'
" Easy Commenting
Plugin 'tpope/vim-commentary'
" Surround - Easy changing of quotes and stuff
Plugin 'tpope/vim-surround'
@ -36,6 +36,12 @@ Plugin 'kien/ctrlp.vim'
" Ack from vim
Plugin 'mileszs/ack.vim'
" Improved vim status bar
Plugin 'bling/vim-airline'
" Indent guides
Plugin 'Yggdroot/indentLine'
" Language specific syntax highlighting
Plugin 'derekwyatt/vim-scala'
Plugin 'kchmck/vim-coffee-script'
@ -60,7 +66,6 @@ if !has("win32") || !has("win16")
Plugin 'christoomey/vim-tmux-navigator'
endif
" Markdown
Plugin 'godlygeek/tabular'
Plugin 'plasticboy/vim-markdown'
@ -154,3 +159,14 @@ if exists('+colorcolumn')
else
au BufWinEnter * let w:m2=matchadd('ErrorMsg', '\%>80v.\+', -1)
endif
" Indent lines customizations
" Color customizations
" let g:indentLine_color_term=###
" Line indent guides are defaulted to off
let g:indentLine_enabled=0
" Leader + i will toggle line indent guides
map <silent> <Leader>i :IndentLinesToggle<CR>

BIN
dotfiles/xmonad/xmonad-x86_64-linux

Binary file not shown.

6
dotfiles/xmonad/xmonad.hs

@ -252,9 +252,9 @@ main = do
,((0 , xF86XK_Sleep ), spawn "pm-suspend")
,((0 , xF86XK_MonBrightnessUp ), spawn "xbacklight -inc 10")
,((0 , xF86XK_MonBrightnessDown ), spawn "xbacklight -dec 10")
--,((0 , xF86XK_AudioMute), spawn "~/scripts/dvol2 -t")
--,((0 , xF86XK_AudioLowerVolume), spawn "~/scripts/dvol2 -d 2 & mplayer /usr/share/sounds/freedesktop/stereo/audio-volume-change.oga")
--,((0 , xF86XK_AudioRaiseVolume ), spawn "~/scripts/dvol2 -i 2 & mplayer /usr/share/sounds/freedesktop/stereo/audio-volume-change.oga")
,((0 , xF86XK_AudioMute), spawn "~/scripts/dvol2 -t")
,((0 , xF86XK_AudioLowerVolume), spawn "~/scripts/dvol2 -d 2 & mplayer /usr/share/sounds/freedesktop/stereo/audio-volume-change.oga")
,((0 , xF86XK_AudioRaiseVolume ), spawn "~/scripts/dvol2 -i 2 & mplayer /usr/share/sounds/freedesktop/stereo/audio-volume-change.oga")
]
`additionalMouseBindings`
[((myModMask, 6), \_ -> moveTo Next NonEmptyWS)

BIN
dotfiles/xmonad/xmonad.o

Binary file not shown.
Loading…
Cancel
Save