diff --git a/alacritty.toml b/alacritty.toml deleted file mode 120000 index d25c388..0000000 --- a/alacritty.toml +++ /dev/null @@ -1 +0,0 @@ -/Users/antoinelhermitte/.alacritty.toml \ No newline at end of file diff --git a/alacritty.toml b/alacritty.toml new file mode 100644 index 0000000..88aafa8 --- /dev/null +++ b/alacritty.toml @@ -0,0 +1,19 @@ +import = [ + #"~/.config/alacritty/themes/themes/github_dark.toml", + "~/.config/alacritty/themes/themes/catppuccin_macchiato.toml" + ] + +[shell] +program = "/bin/bash" +args = ["-l"] + +[window] +decorations = "buttonless" +padding = { x = 5, y = 3 } +startup_mode = "maximized" + +[font] +size = 15 + +[font.normal] +family = "JetBrainsMonoNL Nerd Font Mono" diff --git a/bash_profile b/bash_profile deleted file mode 120000 index f0a7182..0000000 --- a/bash_profile +++ /dev/null @@ -1 +0,0 @@ -/Users/antoinelhermitte/.bash_profile \ No newline at end of file diff --git a/bash_profile b/bash_profile new file mode 100644 index 0000000..f7ec86a --- /dev/null +++ b/bash_profile @@ -0,0 +1,17 @@ +export PATH=/opt/homebrew/bin:/Users/antoinelhermitte/.cargo/bin:/usr/local/bin:/System/Cryptexes/App/usr/bin:/usr/bin:/bin:/usr/sbin:/sbin:/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/local/bin:/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/bin:/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/appleinternal/bin +export BASH_SILENCE_DEPRECATION_WARNING=1 +export SHELL=/bin/bash + +if [[ "$OSTYPE" == "darwin"* ]]; then + # needed for brew + eval "$(/opt/homebrew/bin/brew shellenv)" +fi + +alias la="ls -alhr" +alias e="exit" +alias ~="cd ~" +alias n="cd ~/notes" +alias nv="nvim" +alias t="tmux" +alias d="cd ~/dev" +eval "$(starship init bash)" diff --git a/bashrc b/bashrc deleted file mode 120000 index 8bf043d..0000000 --- a/bashrc +++ /dev/null @@ -1 +0,0 @@ -/Users/antoinelhermitte/.bashrc \ No newline at end of file diff --git a/bashrc b/bashrc new file mode 100644 index 0000000..59d0e89 --- /dev/null +++ b/bashrc @@ -0,0 +1,8 @@ +alias la="ls -alhr" +alias e="exit" +alias ~="cd ~" +alias n="cd ~/notes" +alias nv="nvim" +alias t="tmux" + +eval "$(starship init bash)" diff --git a/tmux.conf b/tmux.conf deleted file mode 120000 index 7ac9206..0000000 --- a/tmux.conf +++ /dev/null @@ -1 +0,0 @@ -/Users/antoinelhermitte/.tmux.conf \ No newline at end of file diff --git a/tmux.conf b/tmux.conf new file mode 100644 index 0000000..67565a3 --- /dev/null +++ b/tmux.conf @@ -0,0 +1,44 @@ +#set -g default-terminal "alacritty" + +set -g default-terminal "tmux-256color" +set-option -ga terminal-overrides ",xterm-256color:Tc" +set-option -g default-shell "/bin/bash" +set -g focus-events on + +set -g mouse on + +# status bar +set -g window-status-current-style 'fg=white' +set -g window-style default +set -g status-style "fg=#665c54" +set -g status-left-style "fg=#928374" +set -g status-bg default +set -g status-position top +set -g status-interval 1 +set -g status-left "" + +# count the panes from 1 +set -g base-index 1 +setw -g pane-base-index 1 + +# reload configuration +bind-key -r r source-file ~/.tmux.conf + +# Plugins +# + +# List of plugins +set -g @plugins 'tmux-plugins/tpm' # tmux package manager +set -g @plugins 'tmux-plugins/tmux-resurrect' # persist tmux environment across system restarts +set -g @plugins 'tmux-plugins/tmux-continuum' # continuous saving of tmux environment +set -g @plugins 'tmux-plugins/tmux-yank' # for copying to system clipboard +set -g @plugins 'tmux-plugins/tmux-prefix-highlight' # highlights when you press tmux prefix key +set -g @plugins 'dracula/tmux' + + +# Dracula config +set -g @dracula-border-contrast true +set -g @dracula-show-fahrenheit false +set -g @dracula-show-weather false +set -g @dracula-ram-usage true +set -g @dracula-cpu-usage true