diff --git a/tmux.conf b/tmux.conf index 32a517e..6282980 100755 --- a/tmux.conf +++ b/tmux.conf @@ -10,6 +10,8 @@ set allow-rename off unbind C-b set-option -g prefix C-x bind-key C-x send-prefix + +unbind C-z # https://superuser.com/questions/1291278/accidentally-stop-the-tmux-job-via-remote-shell # reload config file (change file location to your the tmux.conf you want to use) bind r source-file ~/.tmux.conf \; display "Reloaded!" diff --git a/vim/coc-settings.json b/vim/coc-settings.json new file mode 100644 index 0000000..47f1bfb --- /dev/null +++ b/vim/coc-settings.json @@ -0,0 +1,3 @@ +{ + "pyright.inlayHints.enable": false +} diff --git a/vim/ftplugin/json.vim b/vim/ftplugin/json.vim new file mode 100644 index 0000000..bd55dee --- /dev/null +++ b/vim/ftplugin/json.vim @@ -0,0 +1,2 @@ +set conceallevel=0 +let g:indentLine_setConceal = 0 diff --git a/vim/vimrc b/vim/vimrc index 8b84b06..dd614eb 100644 --- a/vim/vimrc +++ b/vim/vimrc @@ -156,10 +156,10 @@ let g:ansible_yamlKeyName = 'yamlKey' " let g:coc_global_extensions = ['coc-pyright'] function! s:enable_coc_for_type() - let l:filesuffix_whitelist = ['py'] - if index(l:filesuffix_whitelist, expand('%:e')) == -1 - let b:coc_enabled = 0 - endif + let l:filesuffix_whitelist = ['py'] + if index(l:filesuffix_whitelist, expand('%:e')) == -1 + let b:coc_enabled = 0 + endif endfunction autocmd BufRead,BufNewFile * call s:enable_coc_for_type() source ~/.vim/coc.vim