From f9ea648f20ad0ac73d0434c46ed62148a8d08a8b Mon Sep 17 00:00:00 2001 From: Fabian Ising Date: Wed, 14 Oct 2020 11:05:01 +0200 Subject: [PATCH 1/4] Change zsh screen settings, fix delzip, change theme --- zsh/.zshrc | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/zsh/.zshrc b/zsh/.zshrc index 2d678ab..b9edefd 100644 --- a/zsh/.zshrc +++ b/zsh/.zshrc @@ -47,4 +47,11 @@ alias vim=nvim alias sudo='sudo ' export EDITOR='nvim' alias ls="ls --color=always" -alias delzip="unzip -Z -1 MacDown.app.zip | xargs -I{} rm -rv {}" +# For ccache +export CCACHE_CPP2=YES + +delzip() { + unzip -Z -1 "$@" | xargs -I{} rm -rf {} +} +# mitmproxy +export MITMPROXY_SSLKEYLOGFILE="~/.mitmproxy/sslkeylogfile.txt" From fcade9a042316fd13a050c913c956dc18895b5c2 Mon Sep 17 00:00:00 2001 From: Fabian Ising Date: Wed, 14 Oct 2020 11:06:07 +0200 Subject: [PATCH 2/4] Change zsh screen settings, fix delzip, change theme --- tmux/.tmux.conf | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/tmux/.tmux.conf b/tmux/.tmux.conf index 7dd9453..813e08d 100644 --- a/tmux/.tmux.conf +++ b/tmux/.tmux.conf @@ -1,5 +1,5 @@ set-environment -g PATH "/usr/local/bin:/bin:/usr/bin" -set -g default-terminal "screen-256color" +set -g default-terminal "xterm-256color" set -g history-limit 999999999 @@ -52,6 +52,10 @@ bind -n C-j if-shell "$is_vim" "send-keys C-j" "select-pane -D" bind -n C-k if-shell "$is_vim" "send-keys C-k" "select-pane -U" bind -n C-l if-shell "$is_vim" "send-keys C-l" "select-pane -R" +# Nano +bind-key C-x send-keys C-x +bind-key C-o send-keys C-o + # Copying # move x clipboard into tmux paste buffer bind C-p run "tmux set-buffer \"$(xclip -o)\"; tmux paste-buffer" @@ -74,7 +78,7 @@ set -g @plugin 'tmux-plugins/tmux-sidebar' set -g @plugin 'tmux-plugins/tmux-open' set -g @plugin 'tmux-plugins/tmux-yank' set -g @plugin 'jimeh/tmux-themepack' -set -g @themepack 'powerline/double/red' +set -g @themepack 'powerline/double/blue' # Other examples: # set -g @plugin 'github_username/plugin_name' From 3f6ebb31efb7a7f7a6164a6ed96f1dd3103a5233 Mon Sep 17 00:00:00 2001 From: Fabian Ising Date: Wed, 14 Oct 2020 11:18:56 +0200 Subject: [PATCH 3/4] Update Vundle --- nvim/bundle/Vundle.vim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nvim/bundle/Vundle.vim b/nvim/bundle/Vundle.vim index 9a38216..b255382 160000 --- a/nvim/bundle/Vundle.vim +++ b/nvim/bundle/Vundle.vim @@ -1 +1 @@ -Subproject commit 9a38216a1c0c597f978d73547d37681fc689c90d +Subproject commit b255382d6242d7ea3877bf059d2934125e0c4d95 From 421a8c8dca97b9239f131f5c96ad362ae0b73a0a Mon Sep 17 00:00:00 2001 From: Fabian Ising Date: Wed, 14 Oct 2020 11:29:09 +0200 Subject: [PATCH 4/4] Fix python interpreter --- nvim/init.vim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nvim/init.vim b/nvim/init.vim index 22604e3..a399665 100644 --- a/nvim/init.vim +++ b/nvim/init.vim @@ -191,7 +191,7 @@ nmap T let g:ycm_collect_identifiers_from_tags_files = 1 " Read from tag files let g:ycm_global_ycm_extra_conf = '~/.config/nvim/.ycm_extra_conf.py' " Standard conf let g:ycm_enable_diagnostic_signs = 0 " Do not show semantic error bar -let g:ycm_server_python_interpreter = '/usr/bin/python3' +let g:ycm_server_python_interpreter = 'python' let g:ycm_key_list_select_completion = ['', '', ''] let g:ycm_key_list_previous_completion = ['', '', '']