Added python handler thingy for vimrc

This commit is contained in:
Alex Kelly 2018-06-25 15:46:53 -04:00
parent f3e27f45e2
commit 302fb83c4c
2 changed files with 17 additions and 4 deletions

View file

@ -12,6 +12,11 @@ set wrap
set linebreak set linebreak
set nolist 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 the runtime path to include Vundle and initialize
set rtp+=~/.vim/bundle/Vundle.vim set rtp+=~/.vim/bundle/Vundle.vim
call vundle#begin() call vundle#begin()
@ -38,6 +43,9 @@ Plugin 'drmikehenry/vim-extline'
Plugin 'tpope/vim-surround.git' Plugin 'tpope/vim-surround.git'
Plugin 'ryanoasis/vim-webdevicons' Plugin 'ryanoasis/vim-webdevicons'
Plugin 'brookhong/DBGPavim' 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 " Add all your plugins here (note older versions of Vundle used Bundle instead
" of Plugin) " of Plugin)
@ -132,4 +140,7 @@ let g:dbgPavimOnce = 1
let python_highlight_all=1 let python_highlight_all=1
syntax on 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='='

View file

@ -26,7 +26,7 @@ ZSH_THEME="agnoster"
# ENABLE_CORRECTION="true" # ENABLE_CORRECTION="true"
# Uncomment the following line to display red dots whilst waiting for completion. # 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 # Uncomment the following line if you want to disable marking untracked files
# under VCS as dirty. This makes repository status check for large repositories # 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) # Example format: plugins=(rails git textmate ruby lighthouse)
# Add wisely, as too many plugins slow down shell startup. # Add wisely, as too many plugins slow down shell startup.
# plugins=(git) # 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 # 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 source /usr/share/gems/gems/tmuxinator-0.6.11/completion/tmuxinator.zsh
rand () { 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 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' 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"