Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions dotfiles/.config/git/config
Original file line number Diff line number Diff line change
Expand Up @@ -10,3 +10,6 @@

[delta]
syntax-theme = Dracula
[user]
email = richin13@gmail.com
name = Ricardo Madriz
3 changes: 3 additions & 0 deletions dotfiles/.config/nvim/init.vim
Original file line number Diff line number Diff line change
Expand Up @@ -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 ---------------------------- {{{

Expand Down
2 changes: 2 additions & 0 deletions dotfiles/.docker/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
*
!.gitignore
2 changes: 1 addition & 1 deletion dotfiles/.docker/config.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
"credsStore": "ecr-login"
"credsStore": "desktop.exe"
}
13 changes: 7 additions & 6 deletions dotfiles/.tmux.conf
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down Expand Up @@ -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 ""
Expand Down
4 changes: 4 additions & 0 deletions dotfiles/.zshrc
Original file line number Diff line number Diff line change
Expand Up @@ -200,6 +200,8 @@ if [ -x "$(command -v fd)" ]; then
fi

export DOTFILES="$HOME/dotfiles"

export DISPLAY=:0
# }}}
# Key Bindings ---------------------------------------------------- {{{

Expand Down Expand Up @@ -509,3 +511,5 @@ include ~/.bash/sensitive
# Extra swag: ----------------------------------------------------- {{{
fortune ~/.fortunes/zen | cowsay
# }}}

export PATH="$HOME/.poetry/bin:$PATH"