diff options
author | Urbain Vaes <urbain@vaes.uk> | 2018-08-13 14:31:36 +0200 |
---|---|---|
committer | Urbain Vaes <urbain@vaes.uk> | 2018-08-13 14:31:36 +0200 |
commit | f63613682351ec610ffd8eab247aaa4a7dabe538 (patch) | |
tree | 13b3c10ee6366c4d385e49ddf1e675a3e5679336 | |
parent | 7b62c8e5fdbaadd4d377a3edf52870fc22909c28 (diff) |
Add minor modifications
-rw-r--r-- | i3/.config/i3/config | 6 | ||||
-rw-r--r-- | python/.pythonrc | 2 | ||||
-rw-r--r-- | vifm/.config/vifm/vifmrc | 1 | ||||
-rw-r--r-- | vim/.vimrc | 6 |
4 files changed, 8 insertions, 7 deletions
diff --git a/i3/.config/i3/config b/i3/.config/i3/config index 53ea8bc..2eff228 100644 --- a/i3/.config/i3/config +++ b/i3/.config/i3/config @@ -122,10 +122,10 @@ bar { modifier none colors { background #00000088 - inactive_workspace #0000AA #00000088 #FFFFFF - focused_workspace #4c7899 #28557788 #ffffff + inactive_workspace #0000aa #00000088 #ffffff + focused_workspace #4c7899 #285577ff #ffffff active_workspace #333333 #5f676a88 #ffffff - inactive_workspace #333333 #22222288 #888888 + inactive_workspace #333333 #222222ff #888888 urgent_workspace #2f343a #90000088 #ffffff } } diff --git a/python/.pythonrc b/python/.pythonrc index f384a57..4d97a0f 100644 --- a/python/.pythonrc +++ b/python/.pythonrc @@ -1,6 +1,6 @@ import numpy as np import sympy as sym -import matplotlib.pyplot as plt +import matplotlib try: import hermipy as hm diff --git a/vifm/.config/vifm/vifmrc b/vifm/.config/vifm/vifmrc index 21163bd..f3d2b7d 100644 --- a/vifm/.config/vifm/vifmrc +++ b/vifm/.config/vifm/vifmrc @@ -30,6 +30,7 @@ nnoremap ,b :backup<cr> nnoremap ,r :%rename<cr> nnoremap ,t :!urxvt &<cr> nnoremap ,l :!less %f<cr> +nnoremap <c-d> :q<cr> " To disable automatic tagging of search results nnoremap coh :set hlsearch!<cr> @@ -74,8 +74,8 @@ Plug 'urbainvaes/vim-tmux-pilot' if has("nvim") " Plug 'roxma/nvim-completion-manager' - Plug 'Shougo/deoplete.nvim', { 'do' : ':UpdateRemotePlugins' } - Plug 'autozimu/LanguageClient-neovim' + Plug 'Shougo/deoplete.nvim', { 'do' : ':UpdateRemotePlugins', 'tag' : '4.0-serial' } + " Plug 'autozimu/LanguageClient-neovim' Plug 'zchee/deoplete-jedi' Plug 'hkupty/iron.nvim' else @@ -215,7 +215,7 @@ nnoremap <silent> ,, :call remembrall#remind('n', '')<cr> nnoremap <silent> y :<c-u>call remembrall#remind('n', 'y')<cr> augroup remembrall - autocmd FileType tex nnoremap <buffer> <nowait> <expr> ,l Remembrall(',l') + autocmd FileType tex nnoremap <buffer> <silent> <nowait> <expr> ,l Remembrall(',l') augroup END " Ultisnips |