.zshrc and some other configs
This commit is contained in:
commit
23180b54b6
5
.bash_profile
Normal file
5
.bash_profile
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
#
|
||||||
|
# ~/.bash_profile
|
||||||
|
#
|
||||||
|
|
||||||
|
[[ -f ~/.bashrc ]] && . ~/.bashrc
|
||||||
10
.bashrc
Normal file
10
.bashrc
Normal file
@ -0,0 +1,10 @@
|
|||||||
|
#
|
||||||
|
# ~/.bashrc
|
||||||
|
#
|
||||||
|
|
||||||
|
# If not running interactively, don't do anything
|
||||||
|
[[ $- != *i* ]] && return
|
||||||
|
|
||||||
|
alias ls='ls --color=auto'
|
||||||
|
alias grep='grep --color=auto'
|
||||||
|
PS1='[\u@\h \W]\$ '
|
||||||
17
.gitconfig
Normal file
17
.gitconfig
Normal file
@ -0,0 +1,17 @@
|
|||||||
|
[init]
|
||||||
|
defaultBranch=main
|
||||||
|
[user]
|
||||||
|
name = tobjend
|
||||||
|
email = tobend85@gmail.com
|
||||||
|
[core]
|
||||||
|
editor=flatpak run re.sonny.Commit
|
||||||
|
autocrlf = input
|
||||||
|
|
||||||
|
[re.sonny.Commit]
|
||||||
|
title-length-hint=50
|
||||||
|
body-length-wrap=72
|
||||||
|
auto-capitalize-title=true
|
||||||
|
[credential]
|
||||||
|
helper = cache --timeout=18000
|
||||||
|
[push]
|
||||||
|
default = simple
|
||||||
57
.gitignore
vendored
Normal file
57
.gitignore
vendored
Normal file
@ -0,0 +1,57 @@
|
|||||||
|
.ansible/
|
||||||
|
ansible-ora-cloud/
|
||||||
|
.arduino15/
|
||||||
|
.arduinoIDE/
|
||||||
|
.aureola/
|
||||||
|
.dropbox-dist/
|
||||||
|
.fonts/
|
||||||
|
.icons/
|
||||||
|
.aureola/
|
||||||
|
aurs/
|
||||||
|
.cache/
|
||||||
|
.config/
|
||||||
|
Desktop/
|
||||||
|
Dropbox/
|
||||||
|
Documents/
|
||||||
|
.dotnet/
|
||||||
|
Downloads/
|
||||||
|
.dropbox/
|
||||||
|
.git/
|
||||||
|
.gitkraken/
|
||||||
|
.gk/
|
||||||
|
.gnupg/
|
||||||
|
go/
|
||||||
|
.java/
|
||||||
|
.kube/
|
||||||
|
.local/
|
||||||
|
.mozilla/
|
||||||
|
Musikc/
|
||||||
|
.npm/
|
||||||
|
.cache/
|
||||||
|
.nvm/
|
||||||
|
.odo/
|
||||||
|
.oh-my-zsh/
|
||||||
|
Pictures/
|
||||||
|
.pki/
|
||||||
|
Projects/
|
||||||
|
.putty/
|
||||||
|
Public/
|
||||||
|
.redhat/
|
||||||
|
.swt/
|
||||||
|
snap/
|
||||||
|
.tabby-client/
|
||||||
|
Templates/
|
||||||
|
Vaults/
|
||||||
|
VirtualBox*/
|
||||||
|
.vscode/
|
||||||
|
.vscode-oss/
|
||||||
|
.yarn/
|
||||||
|
.ssh/
|
||||||
|
.sqldeveloper/
|
||||||
|
.var/
|
||||||
|
.vscode/
|
||||||
|
.bash_history
|
||||||
|
.bash_logout
|
||||||
|
.fonts.conf
|
||||||
|
.yarnrc
|
||||||
|
CloudTasks.txt
|
||||||
3
.gitmodules
vendored
Normal file
3
.gitmodules
vendored
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
[submodule ".oh-my-zsh"]
|
||||||
|
path = .oh-my-zsh
|
||||||
|
url = https://github.com/ohmyzsh/ohmyzsh.git
|
||||||
12
.gtkrc-2.0
Normal file
12
.gtkrc-2.0
Normal file
@ -0,0 +1,12 @@
|
|||||||
|
gtk-enable-animations=1
|
||||||
|
gtk-theme-name="Breeze-Dark"
|
||||||
|
gtk-primary-button-warps-slider=1
|
||||||
|
gtk-toolbar-style=3
|
||||||
|
gtk-menu-images=1
|
||||||
|
gtk-button-images=1
|
||||||
|
gtk-cursor-theme-size=24
|
||||||
|
gtk-cursor-theme-name="breeze_cursors"
|
||||||
|
gtk-sound-theme-name="ocean"
|
||||||
|
gtk-icon-theme-name="Tela-black"
|
||||||
|
gtk-font-name="FiraMono Nerd Font Medium, Medium 10"
|
||||||
|
|
||||||
18
.nanorc
Normal file
18
.nanorc
Normal file
@ -0,0 +1,18 @@
|
|||||||
|
include /usr/share/nano/sh.nanorc
|
||||||
|
include /usr/share/nano/json.nanorc
|
||||||
|
include /usr/share/nano/java.nanorc
|
||||||
|
include /usr/share/nano/tcl.nanorc
|
||||||
|
include /usr/share/nano/yaml.nanorc
|
||||||
|
include /usr/share/nano/xml.nanorc
|
||||||
|
include /usr/share/nano/man.nanorc
|
||||||
|
include /usr/share/nano/python.nanorc
|
||||||
|
include /usr/share/nano/ruby.nanorc
|
||||||
|
include /usr/share/nano/sql.nanorc
|
||||||
|
include /usr/share/nano/html.nanorc
|
||||||
|
include /usr/share/nano/go.nanorc
|
||||||
|
include /usr/share/nano/javascript.nanorc
|
||||||
|
include /usr/share/nano/lua.nanorc
|
||||||
|
include /usr/share/nano/makefile.nanorc
|
||||||
|
include /usr/share/nano/markdown.nanorc
|
||||||
|
include /usr/share/nano/php.nanorc
|
||||||
|
include /usr/share/nano/perl.nanorc
|
||||||
1
.shell.pre-oh-my-zsh
Normal file
1
.shell.pre-oh-my-zsh
Normal file
@ -0,0 +1 @@
|
|||||||
|
/usr/bin/bash
|
||||||
4
.wget-hsts
Normal file
4
.wget-hsts
Normal file
@ -0,0 +1,4 @@
|
|||||||
|
# HSTS 1.0 Known Hosts database for GNU Wget.
|
||||||
|
# Edit at your own risk.
|
||||||
|
# <hostname> <port> <incl. subdomains> <created> <max-age>
|
||||||
|
github.com 0 1 1737911766 31536000
|
||||||
1835
.zcompdump
Normal file
1835
.zcompdump
Normal file
File diff suppressed because it is too large
Load Diff
1866
.zcompdump-TobEndGalaxyBook-5.9
Normal file
1866
.zcompdump-TobEndGalaxyBook-5.9
Normal file
File diff suppressed because it is too large
Load Diff
BIN
.zcompdump-TobEndGalaxyBook-5.9.zwc
Normal file
BIN
.zcompdump-TobEndGalaxyBook-5.9.zwc
Normal file
Binary file not shown.
3
.zprofile
Normal file
3
.zprofile
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
|
||||||
|
# Created by `pipx` on 2025-02-03 11:18:15
|
||||||
|
export PATH="$PATH:/home/tobi/.local/bin"
|
||||||
1676
.zsh_history
Normal file
1676
.zsh_history
Normal file
File diff suppressed because it is too large
Load Diff
122
.zshrc
Normal file
122
.zshrc
Normal file
@ -0,0 +1,122 @@
|
|||||||
|
# If you come from bash you might have to change your $PATH.
|
||||||
|
# export PATH=$HOME/bin:$HOME/.local/bin:/usr/local/bin:$PATH
|
||||||
|
|
||||||
|
# Path to your Oh My Zsh installation.
|
||||||
|
export ZSH="$HOME/.oh-my-zsh"
|
||||||
|
|
||||||
|
ZSH_THEME="powerlevel9k/powerlevel9k"
|
||||||
|
POWERLEVEL9K_MODE="nerdfont-complete"
|
||||||
|
source $ZSH/themes/powerlevel9k/powerlevel9k.zsh-theme
|
||||||
|
|
||||||
|
# Set name of the theme to load --- if set to "random", it will
|
||||||
|
# load a random theme each time Oh My Zsh is loaded, in which case,
|
||||||
|
# to know which specific one was loaded, run: echo $RANDOM_THEME
|
||||||
|
# See https://github.com/ohmyzsh/ohmyzsh/wiki/Themes
|
||||||
|
#ZSH_THEME="robbyrussell"
|
||||||
|
|
||||||
|
# Set list of themes to pick from when loading at random
|
||||||
|
# Setting this variable when ZSH_THEME=random will cause zsh to load
|
||||||
|
# a theme from this variable instead of looking in $ZSH/themes/
|
||||||
|
# If set to an empty array, this variable will have no effect.
|
||||||
|
# ZSH_THEME_RANDOM_CANDIDATES=( "robbyrussell" "agnoster" )
|
||||||
|
|
||||||
|
# Uncomment the following line to use case-sensitive completion.
|
||||||
|
CASE_SENSITIVE="false"
|
||||||
|
|
||||||
|
# Uncomment the following line to use hyphen-insensitive completion.
|
||||||
|
# Case-sensitive completion must be off. _ and - will be interchangeable.
|
||||||
|
HYPHEN_INSENSITIVE="true"
|
||||||
|
|
||||||
|
# Uncomment one of the following lines to change the auto-update behavior
|
||||||
|
# zstyle ':omz:update' mode disabled # disable automatic updates
|
||||||
|
# zstyle ':omz:update' mode auto # update automatically without asking
|
||||||
|
# zstyle ':omz:update' mode reminder # just remind me to update when it's time
|
||||||
|
|
||||||
|
# Uncomment the following line to change how often to auto-update (in days).
|
||||||
|
# zstyle ':omz:update' frequency 13
|
||||||
|
|
||||||
|
# Uncomment the following line if pasting URLs and other text is messed up.
|
||||||
|
# DISABLE_MAGIC_FUNCTIONS="true"
|
||||||
|
|
||||||
|
# Uncomment the following line to disable colors in ls.
|
||||||
|
# DISABLE_LS_COLORS="true"
|
||||||
|
|
||||||
|
# Uncomment the following line to disable auto-setting terminal title.
|
||||||
|
# DISABLE_AUTO_TITLE="true"
|
||||||
|
|
||||||
|
# Uncomment the following line to enable command auto-correction.
|
||||||
|
# ENABLE_CORRECTION="true"
|
||||||
|
|
||||||
|
# Uncomment the following line to display red dots whilst waiting for completion.
|
||||||
|
# You can also set it to another string to have that shown instead of the default red dots.
|
||||||
|
# e.g. COMPLETION_WAITING_DOTS="%F{yellow}waiting...%f"
|
||||||
|
# Caution: this setting can cause issues with multiline prompts in zsh < 5.7.1 (see #5765)
|
||||||
|
# COMPLETION_WAITING_DOTS="true"
|
||||||
|
|
||||||
|
# Uncomment the following line if you want to disable marking untracked files
|
||||||
|
# under VCS as dirty. This makes repository status check for large repositories
|
||||||
|
# much, much faster.
|
||||||
|
# DISABLE_UNTRACKED_FILES_DIRTY="true"
|
||||||
|
|
||||||
|
# Uncomment the following line if you want to change the command execution time
|
||||||
|
# stamp shown in the history command output.
|
||||||
|
# You can set one of the optional three formats:
|
||||||
|
# "mm/dd/yyyy"|"dd.mm.yyyy"|"yyyy-mm-dd"
|
||||||
|
# or set a custom format using the strftime function format specifications,
|
||||||
|
# see 'man strftime' for details.
|
||||||
|
HIST_STAMPS="dd.mm.yyyy"
|
||||||
|
|
||||||
|
# Would you like to use another custom folder than $ZSH/custom?
|
||||||
|
# ZSH_CUSTOM=/path/to/new-custom-folder
|
||||||
|
|
||||||
|
# Which plugins would you like to load?
|
||||||
|
# Standard plugins can be found in $ZSH/plugins/
|
||||||
|
# Custom plugins may be added to $ZSH_CUSTOM/plugins/
|
||||||
|
# Example format: plugins=(rails git textmate ruby lighthouse)
|
||||||
|
# Add wisely, as too many plugins slow down shell startup.
|
||||||
|
source /usr/share/zsh/plugins/zsh-syntax-highlighting/zsh-syntax-highlighting.zsh
|
||||||
|
|
||||||
|
plugins=(git ansible)
|
||||||
|
|
||||||
|
source $ZSH/oh-my-zsh.sh
|
||||||
|
|
||||||
|
# User configuration
|
||||||
|
|
||||||
|
# export MANPATH="/usr/local/man:$MANPATH"
|
||||||
|
|
||||||
|
# You may need to manually set your language environment
|
||||||
|
# export LANG=en_US.UTF-8
|
||||||
|
|
||||||
|
# Preferred editor for local and remote sessions
|
||||||
|
# if [[ -n $SSH_CONNECTION ]]; then
|
||||||
|
# export EDITOR='vim'
|
||||||
|
# else
|
||||||
|
# export EDITOR='nvim'
|
||||||
|
# fi
|
||||||
|
|
||||||
|
# Compilation flags
|
||||||
|
# export ARCHFLAGS="-arch $(uname -m)"
|
||||||
|
|
||||||
|
# Set personal aliases, overriding those provided by Oh My Zsh libs,
|
||||||
|
# plugins, and themes. Aliases can be placed here, though Oh My Zsh
|
||||||
|
# users are encouraged to define aliases within a top-level file in
|
||||||
|
# the $ZSH_CUSTOM folder, with .zsh extension. Examples:
|
||||||
|
# - $ZSH_CUSTOM/aliases.zsh
|
||||||
|
# - $ZSH_CUSTOM/macos.zsh
|
||||||
|
# For a full list of active aliases, run `alias`.
|
||||||
|
#
|
||||||
|
# Example aliases
|
||||||
|
alias zshconfig="nano ~/.zshrc"
|
||||||
|
# alias ohmyzsh="mate ~/.oh-my-zsh"
|
||||||
|
|
||||||
|
source /usr/share/nvm/init-nvm.sh
|
||||||
|
alias ls="colorls"
|
||||||
|
function cd { builtin cd "$@" && colorls }
|
||||||
|
PATH=$PATH:~/.local/share/gem/ruby/3.3.0/bin
|
||||||
|
alias cat="bat"
|
||||||
|
alias top="htop"
|
||||||
|
archey4
|
||||||
|
ls
|
||||||
|
# Created by `pipx` on 2025-02-03 11:18:15
|
||||||
|
export PATH="$PATH:/home/tobi/.local/bin"
|
||||||
|
export PATH="$PATH:/var/lib/snapd/snap/bin"
|
||||||
109
.zshrc.pre-oh-my-zsh
Normal file
109
.zshrc.pre-oh-my-zsh
Normal file
@ -0,0 +1,109 @@
|
|||||||
|
# If you come from bash you might have to change your $PATH.
|
||||||
|
# export PATH=$HOME/bin:$HOME/.local/bin:/usr/local/bin:$PATH
|
||||||
|
|
||||||
|
# Path to your Oh My Zsh installation.
|
||||||
|
export ZSH="$HOME/.oh-my-zsh"
|
||||||
|
|
||||||
|
source /usr/share/zsh/plugins/zsh-syntax-highlighting/zsh-syntax-highlighting.zsh
|
||||||
|
|
||||||
|
# Set name of the theme to load --- if set to "random", it will
|
||||||
|
# load a random theme each time Oh My Zsh is loaded, in which case,
|
||||||
|
# to know which specific one was loaded, run: echo $RANDOM_THEME
|
||||||
|
# See https://github.com/ohmyzsh/ohmyzsh/wiki/Themes
|
||||||
|
ZSH_THEME="robbyrussell"
|
||||||
|
|
||||||
|
#plugins=(git)
|
||||||
|
|
||||||
|
# Set list of themes to pick from when loading at random
|
||||||
|
# Setting this variable when ZSH_THEME=random will cause zsh to load
|
||||||
|
# a theme from this variable instead of looking in $ZSH/themes/
|
||||||
|
# If set to an empty array, this variable will have no effect.
|
||||||
|
# ZSH_THEME_RANDOM_CANDIDATES=( "robbyrussell" "agnoster" )
|
||||||
|
|
||||||
|
# Uncomment the following line to use case-sensitive completion.
|
||||||
|
# CASE_SENSITIVE="true"
|
||||||
|
|
||||||
|
# Uncomment the following line to use hyphen-insensitive completion.
|
||||||
|
# Case-sensitive completion must be off. _ and - will be interchangeable.
|
||||||
|
# HYPHEN_INSENSITIVE="true"
|
||||||
|
|
||||||
|
# Uncomment one of the following lines to change the auto-update behavior
|
||||||
|
# zstyle ':omz:update' mode disabled # disable automatic updates
|
||||||
|
# zstyle ':omz:update' mode auto # update automatically without asking
|
||||||
|
# zstyle ':omz:update' mode reminder # just remind me to update when it's time
|
||||||
|
|
||||||
|
# Uncomment the following line to change how often to auto-update (in days).
|
||||||
|
# zstyle ':omz:update' frequency 13
|
||||||
|
|
||||||
|
# Uncomment the following line if pasting URLs and other text is messed up.
|
||||||
|
# DISABLE_MAGIC_FUNCTIONS="true"
|
||||||
|
|
||||||
|
# Uncomment the following line to disable colors in ls.
|
||||||
|
# DISABLE_LS_COLORS="true"
|
||||||
|
|
||||||
|
# Uncomment the following line to disable auto-setting terminal title.
|
||||||
|
# DISABLE_AUTO_TITLE="true"
|
||||||
|
|
||||||
|
# Uncomment the following line to enable command auto-correction.
|
||||||
|
ENABLE_CORRECTION="true"
|
||||||
|
|
||||||
|
# Uncomment the following line to display red dots whilst waiting for completion.
|
||||||
|
# You can also set it to another string to have that shown instead of the default red dots.
|
||||||
|
# e.g. COMPLETION_WAITING_DOTS="%F{yellow}waiting...%f"
|
||||||
|
# Caution: this setting can cause issues with multiline prompts in zsh < 5.7.1 (see #5765)
|
||||||
|
# COMPLETION_WAITING_DOTS="true"
|
||||||
|
|
||||||
|
# Uncomment the following line if you want to disable marking untracked files
|
||||||
|
# under VCS as dirty. This makes repository status check for large repositories
|
||||||
|
# much, much faster.
|
||||||
|
# DISABLE_UNTRACKED_FILES_DIRTY="true"
|
||||||
|
|
||||||
|
# Uncomment the following line if you want to change the command execution time
|
||||||
|
# stamp shown in the history command output.
|
||||||
|
# You can set one of the optional three formats:
|
||||||
|
# "mm/dd/yyyy"|"dd.mm.yyyy"|"yyyy-mm-dd"
|
||||||
|
# or set a custom format using the strftime function format specifications,
|
||||||
|
# see 'man strftime' for details.
|
||||||
|
HIST_STAMPS="mm/dd/yyyy"
|
||||||
|
|
||||||
|
# Would you like to use another custom folder than $ZSH/custom?
|
||||||
|
# ZSH_CUSTOM=/path/to/new-custom-folder
|
||||||
|
|
||||||
|
# Which plugins would you like to load?
|
||||||
|
# Standard plugins can be found in $ZSH/plugins/
|
||||||
|
# Custom plugins may be added to $ZSH_CUSTOM/plugins/
|
||||||
|
# Example format: plugins=(rails git textmate ruby lighthouse)
|
||||||
|
# Add wisely, as too many plugins slow down shell startup.
|
||||||
|
plugins=(git archlinux dotenv docker zsh-syntax-highlighting)
|
||||||
|
|
||||||
|
#source $ZSH/oh-my-zsh.sh
|
||||||
|
|
||||||
|
# User configuration
|
||||||
|
|
||||||
|
# export MANPATH="/usr/local/man:$MANPATH"
|
||||||
|
|
||||||
|
# You may need to manually set your language environment
|
||||||
|
export LANG=en_US.UTF-8
|
||||||
|
|
||||||
|
# Preferred editor for local and remote sessions
|
||||||
|
# if [[ -n $SSH_CONNECTION ]]; then
|
||||||
|
# export EDITOR='vim'
|
||||||
|
# else
|
||||||
|
# export EDITOR='nvim'
|
||||||
|
# fi
|
||||||
|
|
||||||
|
# Compilation flags
|
||||||
|
export ARCHFLAGS="-arch $(uname -m)"
|
||||||
|
|
||||||
|
# Set personal aliases, overriding those provided by Oh My Zsh libs,
|
||||||
|
# plugins, and themes. Aliases can be placed here, though Oh My Zsh
|
||||||
|
# users are encouraged to define aliases within a top-level file in
|
||||||
|
# the $ZSH_CUSTOM folder, with .zsh extension. Examples:
|
||||||
|
# - $ZSH_CUSTOM/aliases.zsh
|
||||||
|
# - $ZSH_CUSTOM/macos.zsh
|
||||||
|
# For a full list of active aliases, run `alias`.
|
||||||
|
#
|
||||||
|
# Example aliases
|
||||||
|
#alias zshconfig="nano ~/.zshrc"
|
||||||
|
#alias ohmyzsh="nano ~/.oh-my-zsh"
|
||||||
|
archey4
|
||||||
13
.zshrc.pre-oh-my-zsh-2025-01-24_00-09-12
Normal file
13
.zshrc.pre-oh-my-zsh-2025-01-24_00-09-12
Normal file
@ -0,0 +1,13 @@
|
|||||||
|
# Lines configured by zsh-newuser-install
|
||||||
|
HISTFILE=~/.histfile
|
||||||
|
HISTSIZE=5000
|
||||||
|
SAVEHIST=20000
|
||||||
|
unsetopt beep
|
||||||
|
bindkey -e
|
||||||
|
# End of lines configured by zsh-newuser-install
|
||||||
|
# The following lines were added by compinstall
|
||||||
|
zstyle :compinstall filename '/home/tobi/.zshrc'
|
||||||
|
|
||||||
|
autoload -Uz compinit
|
||||||
|
compinit
|
||||||
|
# End of lines added by compinstall
|
||||||
1
oracle_cloud_instance.sh
Executable file
1
oracle_cloud_instance.sh
Executable file
@ -0,0 +1 @@
|
|||||||
|
ssh -i ~/ansible-ora-cloud/ora-cloud/private/ssh-key-2025-02-01.key ubuntu@130.162.231.152
|
||||||
1
oracle_cloud_instance2.sh
Executable file
1
oracle_cloud_instance2.sh
Executable file
@ -0,0 +1 @@
|
|||||||
|
ssh -i ~/ansible-ora-cloud/ora-cloud/private/ssh-key-2025-02-01.key ubuntu@79.76.127.110
|
||||||
Loading…
x
Reference in New Issue
Block a user