stow bash script
This commit is contained in:
parent
c5ae51ff79
commit
78ac13672e
|
@ -247,7 +247,7 @@ set $bar-inactive_workspace #755B69
|
|||
#}
|
||||
|
||||
# set background on startup
|
||||
set $wallpaper ~/Pictures/wallpapers/galaxy.jpg
|
||||
set $wallpaper ~/Pictures/wallpapers/red_trees.jpg
|
||||
exec --no-startup-id feh --bg-fill $wallpaper
|
||||
|
||||
# turn picom on on start up
|
||||
|
|
|
@ -0,0 +1,8 @@
|
|||
#!/bin/bash
|
||||
|
||||
# 1. list dirs
|
||||
# 2. pipe them into stow
|
||||
# 3. stow them at ~
|
||||
# 4. be verbose
|
||||
|
||||
/bin/ls -d */ | xargs stow -t ~ -v
|
|
@ -27,6 +27,10 @@ execute pathogen#infect()
|
|||
" Always show file name
|
||||
set laststatus=2
|
||||
|
||||
" Enter to insert blank line below current, Shift+Enter to insert above
|
||||
map <Enter> o<ESC>
|
||||
map <S-Enter> O<ESC>
|
||||
|
||||
" Folding (move to python specific vim file?)
|
||||
set foldmethod=indent
|
||||
set foldnestmax=2
|
||||
|
|
Loading…
Reference in New Issue