remove links and replace by actual files
This commit is contained in:
parent
120bde4674
commit
d7618c5bd2
4 changed files with 88 additions and 4 deletions
|
|
@ -1 +0,0 @@
|
|||
/Users/antoinelhermitte/.alacritty.toml
|
||||
19
alacritty.toml
Normal file
19
alacritty.toml
Normal file
|
|
@ -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"
|
||||
|
|
@ -1 +0,0 @@
|
|||
/Users/antoinelhermitte/.bash_profile
|
||||
17
bash_profile
Normal file
17
bash_profile
Normal file
|
|
@ -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)"
|
||||
1
bashrc
1
bashrc
|
|
@ -1 +0,0 @@
|
|||
/Users/antoinelhermitte/.bashrc
|
||||
8
bashrc
Normal file
8
bashrc
Normal file
|
|
@ -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)"
|
||||
|
|
@ -1 +0,0 @@
|
|||
/Users/antoinelhermitte/.tmux.conf
|
||||
44
tmux.conf
Normal file
44
tmux.conf
Normal file
|
|
@ -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
|
||||
Loading…
Reference in a new issue