summaryrefslogtreecommitdiff
path: root/.zshrc.server
diff options
context:
space:
mode:
authorSyndamia <kamen.d.mladenov@protonmail.com>2021-02-19 21:28:04 +0200
committerSyndamia <kamen.d.mladenov@protonmail.com>2021-02-19 21:28:04 +0200
commitc49802de296d9fe063dafbce011f30edb080baad (patch)
tree4e130568e84bc9bfe610377ee85d39d95ed26d25 /.zshrc.server
parente7bb45f28f4a931f30150a6b6b44b6265a531373 (diff)
downloaddotfiles-c49802de296d9fe063dafbce011f30edb080baad.tar
dotfiles-c49802de296d9fe063dafbce011f30edb080baad.tar.gz
dotfiles-c49802de296d9fe063dafbce011f30edb080baad.zip
Removed unecesary comments from all zshrc files
Diffstat (limited to '.zshrc.server')
-rw-r--r--.zshrc.server73
1 files changed, 4 insertions, 69 deletions
diff --git a/.zshrc.server b/.zshrc.server
index 2a9cc56..bc45817 100644
--- a/.zshrc.server
+++ b/.zshrc.server
@@ -15,61 +15,9 @@
export ZSH="$HOME/.oh-my-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="gruvbox"
SOLARIZED_THEME="dark"
-# 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 the following line to disable bi-weekly auto-update checks.
-# DISABLE_AUTO_UPDATE="true"
-
-# Uncomment the following line to automatically update without prompting.
-# DISABLE_UPDATE_PROMPT="true"
-
-# Uncomment the following line to change how often to auto-update (in days).
-# export UPDATE_ZSH_DAYS=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.
-# 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/
@@ -81,11 +29,6 @@ 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'
@@ -93,14 +36,6 @@ else
export EDITOR='vim'
fi
-# Compilation flags
-# export ARCHFLAGS="-arch x86_64"
-
-# 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 the ZSH_CUSTOM folder.
-
-
export NVM_DIR="$HOME/.nvm"
[ -s "$NVM_DIR/nvm.sh" ] && \. "$NVM_DIR/nvm.sh" # This loads nvm
[ -s "$NVM_DIR/bash_completion" ] && \. "$NVM_DIR/bash_completion" # This loads nvm bash_completion
@@ -283,10 +218,10 @@ alias ydlba="youtube-dl --audio-format best -x"
# apt aliases
- alias sasy="sudo apt install -y"
- alias sary="sudo apt remove -y"
- alias saty="sudo apt autoremove -y"
- alias sagt="sudo apt update && sudo apt upgrade -y && sudo apt autoremove -y"
+alias sasy="sudo apt install -y"
+alias sary="sudo apt remove -y"
+alias saty="sudo apt autoremove -y"
+alias sagt="sudo apt update && sudo apt upgrade -y && sudo apt autoremove -y"
if [[ -x "$(command -v exa)" ]]; then
alias ll="exa --icons --group-directories-first --git --time-style long-iso -labh"