From c12766be068c68c49cd70113cf5558e9c19a841f Mon Sep 17 00:00:00 2001 From: Urbain Vaes Date: Mon, 4 Jan 2021 08:59:19 +0000 Subject: Minor changes --- git/.gitconfig | 2 ++ i3/.config/i3blocks/config | 6 ++++-- qutebrowser/.config/qutebrowser/config.py | 1 + vim/.vimrc | 26 +++++++++++++------------- 4 files changed, 20 insertions(+), 15 deletions(-) diff --git a/git/.gitconfig b/git/.gitconfig index 79e64f8..369dcef 100644 --- a/git/.gitconfig +++ b/git/.gitconfig @@ -21,3 +21,5 @@ ff = true [pull] rebase = false +[credential] + helper = store diff --git a/i3/.config/i3blocks/config b/i3/.config/i3blocks/config index 0f0c207..74b48c6 100644 --- a/i3/.config/i3blocks/config +++ b/i3/.config/i3blocks/config @@ -31,12 +31,14 @@ signal=1 [primary] label= -command=echo "$(xclip -o | grep -o '^.\{0,9\}' | sed -e 's/[^a-zA-Z0-9\-]/_/g')" +# command=echo "$(xclip -o | grep -o '^.\{0,9\}' | sed -e 's/[^a-zA-Z0-9\-]/_/g')" +command=echo "" interval=5 [clipboard] label= -command=echo "$(xclip -o -selection "clipboard" | grep -o '^.\{0,9\}' | sed -e 's/[^a-zA-Z0-9\-]/_/g')" +# command=echo "$(xclip -o -selection "clipboard" | grep -o '^.\{0,9\}' | sed -e 's/[^a-zA-Z0-9\-]/_/g')" +command=echo "" interval=5 [volume] diff --git a/qutebrowser/.config/qutebrowser/config.py b/qutebrowser/.config/qutebrowser/config.py index 0f09412..9ab12f4 100644 --- a/qutebrowser/.config/qutebrowser/config.py +++ b/qutebrowser/.config/qutebrowser/config.py @@ -60,6 +60,7 @@ config.bind("gl", 'tab-move +') config.bind("", 'tab-next') config.bind("", 'tab-prev') config.bind("", 'tab-close') +config.bind("", 'do-nothing') # Bindings for insert mode # config.unbind("", mode='insert') diff --git a/vim/.vimrc b/vim/.vimrc index 19bc647..94ba320 100644 --- a/vim/.vimrc +++ b/vim/.vimrc @@ -227,7 +227,7 @@ set undodir^=~/.vim/undo// " // : store absolute path " set complete+=k -set conceallevel=2 +set conceallevel=0 set cursorline set diffopt=filler,vertical,hiddenoff set expandtab @@ -488,15 +488,15 @@ if has("nvim") endif "" Experimental {{{1 -if has("nvim") && hostname() != "peuplier" - lua require'nvim_lsp'.pyls.setup{} - autocmd Filetype python setlocal omnifunc=v:lua.vim.lsp.omnifunc - nnoremap Remembrall('') - nnoremap h lua vim.lsp.buf.hover() - nnoremap a lua vim.lsp.buf.declaration() - nnoremap d lua vim.lsp.buf.definition() - nnoremap i lua vim.lsp.buf.implementation() - nnoremap s lua vim.lsp.buf.signature_help() - nnoremap t lua vim.lsp.buf.type_definition() - nnoremap lua vim.lsp.stop_client(vim.lsp.get_active_clients()) -endif +" if has("nvim") && hostname() != "peuplier" +" lua require'nvim_lsp'.pyls.setup{} +" autocmd Filetype python setlocal omnifunc=v:lua.vim.lsp.omnifunc +" nnoremap Remembrall('') +" nnoremap h lua vim.lsp.buf.hover() +" nnoremap a lua vim.lsp.buf.declaration() +" nnoremap d lua vim.lsp.buf.definition() +" nnoremap i lua vim.lsp.buf.implementation() +" nnoremap s lua vim.lsp.buf.signature_help() +" nnoremap t lua vim.lsp.buf.type_definition() +" nnoremap lua vim.lsp.stop_client(vim.lsp.get_active_clients()) +" endif -- cgit v1.2.3