From 352fad024d0de2473f005a390a09976f0dccd2b5 Mon Sep 17 00:00:00 2001 From: Alex Kelly Date: Thu, 11 Jun 2020 13:58:06 -0400 Subject: [PATCH] Updated settings --- vim/vimrc | 6 ++++-- zsh/zshrc | 6 +++++- 2 files changed, 9 insertions(+), 3 deletions(-) diff --git a/vim/vimrc b/vim/vimrc index 8b029d3..19edddb 100644 --- a/vim/vimrc +++ b/vim/vimrc @@ -54,6 +54,7 @@ Plugin 'dbeniamine/cheat.sh-vim' Plugin 'jacqueswww/vim-vyper' Plugin 'direnv/direnv.vim' Plugin 'tomlion/vim-solidity' + "let g:deoplete#enable_at_startup = 1 "Plugin 'Shougo/deoplete.nvim' @@ -84,12 +85,13 @@ set smarttab set softtabstop=4 set autoindent set expandtab -"let &colorcolumn="123,".join(range(124,999),",") +let &colorcolumn="80,".join(range(81,999),",") + augroup vimrc_autocmds autocmd! "highlight characters past col 80 autocmd FileType python highlight Excess ctermbg=DarkGrey guibg=Black - autocmd FileType python match Excess /\%123v.*/ + autocmd FileType python match Excess /\%80v.*/ autocmd FileType python set nowrap " autocmd FileType rst set textwidth=80 autocmd FileType markdown set textwidth=80 diff --git a/zsh/zshrc b/zsh/zshrc index 67c06ca..abe4f32 100644 --- a/zsh/zshrc +++ b/zsh/zshrc @@ -47,7 +47,7 @@ HIST_STAMPS="yyyy-mm-dd" # 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 vi-mode battery web-search) +plugins=(sudo taskwarrior common-aliases git-flow github keybase vi-mode battery web-search) # User configuration export PATH="/usr/lib64/qt-3.3/bin:/usr/local/bin:/usr/local/sbin:/usr/bin:/usr/sbin:/bin:/sbin:/home/kellya/bin:/home/kellya/incoming/git-annex.linux:/home/kellya/bin/keybase/bin" @@ -116,3 +116,7 @@ cat /home/kellya/.local/share/franklinlogo.txt prompt_git () { : } + + +# hyperdrive autocomplete setup +HYPERDRIVE_AC_ZSH_SETUP_PATH=/home/kellya/.cache/hyperdrive-daemon/autocomplete/zsh_setup && test -f $HYPERDRIVE_AC_ZSH_SETUP_PATH && source $HYPERDRIVE_AC_ZSH_SETUP_PATH; \ No newline at end of file