Bring pairty with windows dotfiles
This commit is contained in:
parent
7f43d29abc
commit
2cf7eef387
@ -1,10 +1 @@
|
|||||||
#
|
[[ -f ~/.bashrc ]] && . ~/.bashrc
|
||||||
# ~/.bash_profile
|
|
||||||
#
|
|
||||||
|
|
||||||
[[ -f ~/.bashrc ]] && . ~/.bashrc
|
|
||||||
|
|
||||||
|
|
||||||
# Added by Toolbox App
|
|
||||||
export PATH="$PATH:/home/isaac/.local/share/JetBrains/Toolbox/scripts"
|
|
||||||
|
|
11
dot_bashrc
11
dot_bashrc
@ -1,12 +1,11 @@
|
|||||||
#
|
|
||||||
# ~/.bashrc
|
|
||||||
#
|
|
||||||
|
|
||||||
# If not running interactively, don't do anything
|
# If not running interactively, don't do anything
|
||||||
[[ $- != *i* ]] && return
|
[[ $- != *i* ]] && return
|
||||||
|
|
||||||
alias ls='ls --color=auto'
|
# Set up terminal variables and scripts
|
||||||
alias grep='grep --color=auto'
|
[[ -f ~/.bash_setup.sh ]] && . ~/.bash_setup.sh
|
||||||
|
|
||||||
|
# Set aliases if aliases exist
|
||||||
|
[[ -f ~/.bash_alias.sh ]] && . ~/.bash_alias.sh
|
||||||
|
|
||||||
# Helpful tool: https://bash-prompt-generator.org
|
# Helpful tool: https://bash-prompt-generator.org
|
||||||
# On github: https://github.com/Scriptim/bash-prompt-generator
|
# On github: https://github.com/Scriptim/bash-prompt-generator
|
||||||
|
18
dot_config/alacritty/alacritty.toml
Normal file
18
dot_config/alacritty/alacritty.toml
Normal file
@ -0,0 +1,18 @@
|
|||||||
|
live_config_reload = true
|
||||||
|
|
||||||
|
[shell]
|
||||||
|
program = "pwsh"
|
||||||
|
args = ["-NoLogo"]
|
||||||
|
|
||||||
|
[window]
|
||||||
|
dimensions.columns = 120
|
||||||
|
dimensions.lines = 30
|
||||||
|
dynamic_padding = true
|
||||||
|
dynamic_title = true
|
||||||
|
|
||||||
|
[font]
|
||||||
|
normal.family = "CaskaydiaCove Nerd Font"
|
||||||
|
|
||||||
|
[cursor]
|
||||||
|
style.shape = "Beam"
|
||||||
|
style.blinking = "Off"
|
28
dot_config/fastfetch/config.jsonc
Normal file
28
dot_config/fastfetch/config.jsonc
Normal file
@ -0,0 +1,28 @@
|
|||||||
|
{
|
||||||
|
"$schema": "https://github.com/fastfetch-cli/fastfetch/raw/dev/doc/json_schema.json",
|
||||||
|
"modules": [
|
||||||
|
"title",
|
||||||
|
"separator",
|
||||||
|
"os",
|
||||||
|
"host",
|
||||||
|
"kernel",
|
||||||
|
"uptime",
|
||||||
|
"packages",
|
||||||
|
"shell",
|
||||||
|
"de",
|
||||||
|
"wm",
|
||||||
|
"wmtheme",
|
||||||
|
"theme",
|
||||||
|
"font",
|
||||||
|
"cursor",
|
||||||
|
"terminal",
|
||||||
|
"terminalfont",
|
||||||
|
"cpu",
|
||||||
|
"gpu",
|
||||||
|
"memory",
|
||||||
|
"localip",
|
||||||
|
"battery",
|
||||||
|
"poweradapter",
|
||||||
|
"weather"
|
||||||
|
]
|
||||||
|
}
|
12
dot_editorconfig
Normal file
12
dot_editorconfig
Normal file
@ -0,0 +1,12 @@
|
|||||||
|
# https://editorconfig.org/
|
||||||
|
# top-most EditorConfig file
|
||||||
|
root = true
|
||||||
|
[*]
|
||||||
|
end_of_line = lf
|
||||||
|
charset = utf-8
|
||||||
|
indent_style = tab
|
||||||
|
trim_trailing_whitespace = true
|
||||||
|
|
||||||
|
[*.yml]
|
||||||
|
indent_style = space
|
||||||
|
indent_size = 2
|
@ -10,3 +10,8 @@
|
|||||||
name = Isaac Shoebottom
|
name = Isaac Shoebottom
|
||||||
[core]
|
[core]
|
||||||
editor = nano
|
editor = nano
|
||||||
|
autocrlf = false
|
||||||
|
[init]
|
||||||
|
defaultBranch = master
|
||||||
|
[pull]
|
||||||
|
rebase = true
|
||||||
|
@ -1,5 +0,0 @@
|
|||||||
|
|
||||||
|
|
||||||
# Added by Toolbox App
|
|
||||||
export PATH="$PATH:/home/isaac/.local/share/JetBrains/Toolbox/scripts"
|
|
||||||
|
|
46
dot_ssh/config
Normal file
46
dot_ssh/config
Normal file
@ -0,0 +1,46 @@
|
|||||||
|
Host fcslinux
|
||||||
|
Hostname fcslinux.cs.unb.ca
|
||||||
|
Port 22
|
||||||
|
User ishoebot
|
||||||
|
IdentityFile ~/.ssh/unb.ed25519
|
||||||
|
AddKeysToAgent yes
|
||||||
|
ForwardAgent yes
|
||||||
|
|
||||||
|
Host remotelab34
|
||||||
|
Hostname remotelabm34.cs.unb.ca
|
||||||
|
User ishoebot
|
||||||
|
Port 22
|
||||||
|
ProxyCommand ssh -q -W %h:%p fcslinux
|
||||||
|
|
||||||
|
Host remotelab35
|
||||||
|
Hostname remotelabm35.cs.unb.ca
|
||||||
|
User ishoebot
|
||||||
|
Port 22
|
||||||
|
ProxyCommand ssh -q -W %h:%p fcslinux
|
||||||
|
|
||||||
|
Host cs3103
|
||||||
|
Hostname cs3103.cs.unb.ca
|
||||||
|
User ishoebot
|
||||||
|
Port 22
|
||||||
|
ProxyCommand ssh -q -W %h:%p fcslinux
|
||||||
|
|
||||||
|
Host ubuntu
|
||||||
|
Hostname ssh.shoebottom.ca
|
||||||
|
User isaac
|
||||||
|
Port 2222
|
||||||
|
IdentityFile ~/.ssh/ubuntu.ed25519
|
||||||
|
AddKeysToAgent yes
|
||||||
|
|
||||||
|
Host github
|
||||||
|
Hostname github.com
|
||||||
|
User git
|
||||||
|
IdentityFile ~/.ssh/git.ed25519
|
||||||
|
AddKeysToAgent yes
|
||||||
|
ForwardAgent yes
|
||||||
|
|
||||||
|
Host gitea
|
||||||
|
Hostname ssh.shoebottom.ca
|
||||||
|
User gitea
|
||||||
|
IdentityFile ~/.ssh/git.ed25519
|
||||||
|
AddKeysToAgent yes
|
||||||
|
ForwardAgent yes
|
0
empty_dot_profile
Normal file
0
empty_dot_profile
Normal file
Loading…
Reference in New Issue
Block a user