From 95f7c4be5c19dbb4f29da0282c547229eb9176fa Mon Sep 17 00:00:00 2001 From: Daniel Flanagan Date: Wed, 10 Aug 2016 12:13:05 -0500 Subject: [PATCH] browser stuff, xresources --- browser/qutebrowser/keys.conf | 4 ++-- editor/nvim/config/init.vim | 5 ++++- scripts/reload_xresources.sh | 3 +++ 3 files changed, 9 insertions(+), 3 deletions(-) diff --git a/browser/qutebrowser/keys.conf b/browser/qutebrowser/keys.conf index a82a979..9ebed88 100644 --- a/browser/qutebrowser/keys.conf +++ b/browser/qutebrowser/keys.conf @@ -164,10 +164,10 @@ hint images hint images tab ;I -hint links fill ":open {hint-url}" +hint links fill :open {hint-url} ;o -hint links fill ":open -t {hint-url}" +hint links fill :open -t {hint-url} ;O hint links yank diff --git a/editor/nvim/config/init.vim b/editor/nvim/config/init.vim index 8ecc194..93845ae 100644 --- a/editor/nvim/config/init.vim +++ b/editor/nvim/config/init.vim @@ -38,7 +38,10 @@ Plug 'nathanaelkane/vim-indent-guides' " indentation guides (NOTE: doesn't seem let g:indent_guides_start_level = 0 let g:indent_guides_auto_color = 1 -Plug 'Shougo/deoplete.nvim' " autocomplete +function! DoRemote(arg) + UpdateRemotePlugins +endfunction +Plug 'Shougo/deoplete.nvim', { 'do': function('DoRemote') } " autocomplete let g:deoplete#enable_at_startup = 1 Plug 'scrooloose/syntastic' " syntax checker diff --git a/scripts/reload_xresources.sh b/scripts/reload_xresources.sh index 9260a35..8df82a6 100755 --- a/scripts/reload_xresources.sh +++ b/scripts/reload_xresources.sh @@ -41,4 +41,7 @@ while read -r line; do previous_colors["color${a[0]}"]="${a[1]}" done <<< "$values" +xrdb -merge "$HOME/.Xresources" +xrdb -merge "$HOME/.Xresources.colors" +xrdb -merge "$HOME/.Xresources.env"