Browse Source

Small shell/emacs/vim changes

Simon Watson 2 years ago
parent
commit
4b33349e7b
3 changed files with 7 additions and 2 deletions
  1. 2 0
      bashrc/bashrc-all
  2. 5 1
      emacs/.emacs-all
  3. 0 1
      vim/.vimrc

+ 2 - 0
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

+ 5 - 1
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

+ 0 - 1
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.