4b33349e7be6df4a2d944e5da09264e0a2ff4a02
commit 4b33349e7be6df4a2d944e5da09264e0a2ff4a02
Author: Simon Watson <spw01@protonmail.com>
Date: Tue Jan 25 19:31:18 2022 -0500

Small shell/emacs/vim changes

diff --git a/bashrc/bashrc-all b/bashrc/bashrc-all
index 30d9bd7..94e5d0f 100644
--- a/bashrc/bashrc-all
+++ b/bashrc/bashrc-all
@@ -85,6 +85,8 @@ if [ ! -z $GPG_PATH ]; then
}
fi

+alias open-ssh="ps aux | awk '{if (\$11 ~ /ssh$/) { print substr(\$0, index(\$0,\$9)) }}'"
+
# Case defines platform specific configs
# Platform agnostic configs above
case $(hostname) in
diff --git a/emacs/.emacs-all b/emacs/.emacs-all
index 48f4e37..d2b3783 100644
--- a/emacs/.emacs-all
+++ b/emacs/.emacs-all
@@ -45,7 +45,11 @@
:repo "ALSchwalm/janet-mode"))
(straight-use-package
'(puppet-mode :type git :host github
- repo: "voxpupuli/puppet-mode"))
+ :repo "voxpupuli/puppet-mode"))
+(straight-use-package
+ '(pico8-mode :type git :host github
+ :repo "Kaali/pico8-mode"))
+

;; Mastodon
(straight-use-package
diff --git a/vim/.vimrc b/vim/.vimrc
index f5470f2..5e926bf 100644
--- a/vim/.vimrc
+++ b/vim/.vimrc
@@ -19,7 +19,6 @@ Plug 'vim-syntastic/syntastic'
Plug 'arzg/vim-rust-syntax-ext'
Plug 'rafi/awesome-vim-colorschemes'
Plug 'https://gitlab.com/yorickpeterse/vim-paper.git'
-Plug 'davidhalter/jedi-vim'
Plug 'vim-scripts/AutoComplPop'

" List ends here. Plugins become visible to Vim after this call.