2 Commits

2 changed files with 9 additions and 3 deletions
Split View
  1. + 1
    - 1
      sxhkd/sxhkdrc
  2. + 8
    - 2
      vim/vimrc

+ 1
- 1
sxhkd/sxhkdrc

@ -275,7 +275,7 @@ alt + backslash
# run dmenu launcher
alt + space
dmenu_recent -x 400 -w 1120 -y 525 -h 25 -o 0.75 -dim 0.5 -s 3
dmenu_recent -x 400 -w 1120 -y 525 -h 25 -o 0.75 -dim 0.5 -s 0
#XDG_CURRENT_DESKTOP=KDE dmenu_recent -x 400 -w 1120 -y 525 -h 25 -o 0.75 -dim 0.5 -s 0
# volume controls

+ 8
- 2
vim/vimrc

@ -96,6 +96,7 @@ set showbreak=\ \ \ ⇲ " Visual linebreak indicator
set updatetime=100 " Make some plugins snappier
set backspace=indent,eol,start " Fix OS X backspace behavior
set ruler " Fix OS X missing ruler
set noexpandtab
"set nowrap
@ -120,11 +121,16 @@ aug python
autocmd FileType python setlocal ts=4 sts=4 sw=4 noexpandtab
aug end
aug python
" to override ftype/python.vim
aug scss
" to override ftype/scss.vim
autocmd FileType scss setlocal ts=4 sts=4 sw=4 noexpandtab
aug end
aug markdown
" to override ftype/scss.vim
autocmd FileType markdown setlocal ts=4 sts=4 sw=4 noexpandtab
aug end
syntax spell toplevel

Loading…
Cancel
Save