Compare commits

..

2 Commits

Author SHA1 Message Date
de7fb8f43b Get serious with sshfs 2022-07-13 10:52:20 -04:00
38f4b4591d Do powerline setup better hopefully 2022-07-01 14:48:24 -04:00
2 changed files with 6 additions and 9 deletions

View File

@@ -3,7 +3,7 @@ set -o errexit
set -o pipefail set -o pipefail
main() { main() {
killall -q -w -r 'sshfs.+me@jool:/store/sshfs/meatballhat.+' || true killall -9 -q -w -r 'sshfs.+me@jool:/store/sshfs/meatballhat.+' || true
fusermount -u ~/mnt/jool 2>/dev/null || true fusermount -u ~/mnt/jool 2>/dev/null || true
local sshfs_args=( local sshfs_args=(

13
vimrc
View File

@@ -96,14 +96,11 @@ let g:vim_markdown_frontmatter = 1
let g:yapf_style = "pep8" let g:yapf_style = "pep8"
if has("python3") if has("python3")
python3 << eopython python3 import sys
try: python3 sys.path.append("/usr/lib/python3/dist-packages")
from powerline.vim import setup as powerline_setup python3 from powerline.vim import setup as powerline_setup
powerline_setup() python3 powerline_setup()
del powerline_setup python3 del powerline_setup
except ImportError:
pass
eopython
endif endif
packadd! dracula packadd! dracula