From 302fb83c4c3cd0877975672398b77e886dcd2d48 Mon Sep 17 00:00:00 2001 From: Alex Kelly Date: Mon, 25 Jun 2018 15:46:53 -0400 Subject: [PATCH] Added python handler thingy for vimrc --- vim/vimrc | 13 ++++++++++++- zsh/zshrc | 8 +++++--- 2 files changed, 17 insertions(+), 4 deletions(-) diff --git a/vim/vimrc b/vim/vimrc index d461007..0b53aa8 100644 --- a/vim/vimrc +++ b/vim/vimrc @@ -12,6 +12,11 @@ set wrap set linebreak set nolist +" Attempt to fix python/python3 issue +" To run py2 stuff, you can force with "vim --cmd 'let py2 = 1' +if exists('py2') && has('python') +elseif has('python3') +endif " set the runtime path to include Vundle and initialize set rtp+=~/.vim/bundle/Vundle.vim call vundle#begin() @@ -38,6 +43,9 @@ Plugin 'drmikehenry/vim-extline' Plugin 'tpope/vim-surround.git' Plugin 'ryanoasis/vim-webdevicons' Plugin 'brookhong/DBGPavim' +Plugin 'dhruvasagar/vim-table-mode' +Plugin 'nathanielc/vim-tickscript' +Plugin 'fatih/vim-go' " Add all your plugins here (note older versions of Vundle used Bundle instead " of Plugin) @@ -132,4 +140,7 @@ let g:dbgPavimOnce = 1 let python_highlight_all=1 syntax on -" if at first you don't succeed...commit a bunch of comments until you do + +" For table mode RST friendliness +let g:table_mode_corner_corner='+' +let g:table_mode_header_fillchar='=' diff --git a/zsh/zshrc b/zsh/zshrc index 9d5a9db..3ed15bc 100644 --- a/zsh/zshrc +++ b/zsh/zshrc @@ -26,7 +26,7 @@ ZSH_THEME="agnoster" # ENABLE_CORRECTION="true" # Uncomment the following line to display red dots whilst waiting for completion. -# COMPLETION_WAITING_DOTS="true" +COMPLETION_WAITING_DOTS="true" # Uncomment the following line if you want to disable marking untracked files # under VCS as dirty. This makes repository status check for large repositories @@ -46,7 +46,7 @@ ZSH_THEME="agnoster" # Example format: plugins=(rails git textmate ruby lighthouse) # Add wisely, as too many plugins slow down shell startup. # plugins=(git) -plugins=(sudo taskwarrior common-aliases git-flow keybase geeknote vi-mode battery) +plugins=(sudo taskwarrior common-aliases git-flow keybase geeknote vi-mode battery web-search) # User configuration @@ -96,7 +96,9 @@ export PATH="/usr/local/heroku/bin:$PATH" source /usr/share/gems/gems/tmuxinator-0.6.11/completion/tmuxinator.zsh rand () { - cat /dev/urandom | tr -dc 'a-zA-Z0-9' | fold -w ${1:-32} | head -n 1 + cat /dev/urandom | tr -dc 'a-zA-Z0-9' | fold -w ${1:-32} | head -n 1|tr -d '\n' } alias dum='du -sh *|egrep ".*\.?[0-9]M"' alias keploy='echo -e "\e[101;97mKeploy was removed, its functionality is already built in ssh-copy-id, just use that\e[49m"; ssh-copy-id' +cat /home/kellya/.local/share/franklinlogo.txt +export PATH="$PATH:/home/kellya/go/bin"