diff --git a/dotfiles/.config/git/config b/dotfiles/.config/git/config index f016543..d46d001 100644 --- a/dotfiles/.config/git/config +++ b/dotfiles/.config/git/config @@ -10,3 +10,6 @@ [delta] syntax-theme = Dracula +[user] + email = richin13@gmail.com + name = Ricardo Madriz diff --git a/dotfiles/.config/nvim/init.vim b/dotfiles/.config/nvim/init.vim index f887dcd..b2aba1b 100644 --- a/dotfiles/.config/nvim/init.vim +++ b/dotfiles/.config/nvim/init.vim @@ -533,6 +533,9 @@ augroup coc_highligh autocmd CursorHold * silent call CocActionAsync('highlight') augroup end +" +let g:system_copy#copy_command='clip.exe' + " }}} " Plugin: Heirline ---------------------------- {{{ diff --git a/dotfiles/.docker/.gitignore b/dotfiles/.docker/.gitignore new file mode 100644 index 0000000..d6b7ef3 --- /dev/null +++ b/dotfiles/.docker/.gitignore @@ -0,0 +1,2 @@ +* +!.gitignore diff --git a/dotfiles/.docker/config.json b/dotfiles/.docker/config.json index 2ee0e9e..8ccf24d 100644 --- a/dotfiles/.docker/config.json +++ b/dotfiles/.docker/config.json @@ -1,3 +1,3 @@ { - "credsStore": "ecr-login" + "credsStore": "desktop.exe" } diff --git a/dotfiles/.tmux.conf b/dotfiles/.tmux.conf index 3de931c..4d5b919 100644 --- a/dotfiles/.tmux.conf +++ b/dotfiles/.tmux.conf @@ -21,10 +21,11 @@ set-option -g default-shell /bin/zsh # make default terminal 256 colors # gets around need to pass -2 to tmux at command line startup -set -g default-terminal "alacritty" +# set -g default-terminal "alacritty" +set-option -g default-terminal "screen-256color" # tmux-256color -set-option -sa terminal-overrides ',alacritty:Tc' +set-option -sa terminal-overrides ',xterm-256color:RGB' set-option -g focus-events on # Draw pane borders with ascii characters to avoid unicode pane border problems @@ -87,9 +88,9 @@ set -g status-left "#{prefix_highlight}#[fg=#f8f8f2,bg=#44475a] #S " # set -ag status-left "#[fg=colour255,bg=colour234]::" # Right side -set -g status-right "#[fg=#bd93f9]#(~/.config/tmux/scripts/music.sh) #[fg=#50fa7b]#{playerctl_short}" -set -ag status-right "#[fg=#6272a4] | " -set -ag status-right "#[fg=#f8f8f2,bold]%m.%d %R//#(~/.config/tmux/scripts/dst.sh) " +# set -g status-right "#[fg=#bd93f9]#(~/.config/tmux/scripts/music.sh) #[fg=#50fa7b]#{playerctl_short}" +# set -ag status-right "#[fg=#6272a4] | " +set -g status-right "#[fg=#f8f8f2,bold]%m.%d %R//#(~/.config/tmux/scripts/dst.sh) " set -ag status-right "#[fg=#f8f8f2,bold]#{online_status} " set -g status-right-length 100 @@ -174,7 +175,7 @@ bind-key -r M-b swap-window -t :- # swap current window with the previous one # # Copy functionality like Vi bind-key -T copy-mode-vi 'v' send -X begin-selection -bind -T copy-mode-vi 'y' send-keys -X copy-pipe-and-cancel "xsel -i --clipboard" +bind -T copy-mode-vi 'y' send-keys -X copy-pipe-and-cancel "clip.exe" # # Make new tmux windows open with directory in current pane bind-key c new-window -c "#{pane_current_path}" -n "" diff --git a/dotfiles/.zshrc b/dotfiles/.zshrc index dd6df4b..eb6477e 100644 --- a/dotfiles/.zshrc +++ b/dotfiles/.zshrc @@ -200,6 +200,8 @@ if [ -x "$(command -v fd)" ]; then fi export DOTFILES="$HOME/dotfiles" + +export DISPLAY=:0 # }}} # Key Bindings ---------------------------------------------------- {{{ @@ -509,3 +511,5 @@ include ~/.bash/sensitive # Extra swag: ----------------------------------------------------- {{{ fortune ~/.fortunes/zen | cowsay # }}} + +export PATH="$HOME/.poetry/bin:$PATH"