Skip to content

Commit

Permalink
Update zsh related files
Browse files Browse the repository at this point in the history
  • Loading branch information
JSYoo5B committed Jan 11, 2020
1 parent 94e884f commit e61c93b
Show file tree
Hide file tree
Showing 3 changed files with 42 additions and 13 deletions.
30 changes: 17 additions & 13 deletions Readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,23 +2,27 @@
1. Configuration files for IDE keymap
2. Auto script for removing unnecessary programs, installing essential utils

## z-shell
* [jsyoo5b.zsh-theme](https://github.com/JSYoo5B/ConfigurationFiles/blob/master/zsh/jsyoo5b.zsh-theme)
based on [dst.zsh-theme](https://github.com/robbyrussell/oh-my-zsh/blob/master/themes/dst.zsh-theme) with oh-my-zsh
paste on $HOME/.oh-my-zsh/custom/themes/
* [.zshrc](https://github.com/JSYoo5B/ConfigurationFiles/blob/master/zsh/.zshrc)
.zshrc with oh-my-zshrc
* [.zsh_aliases](https://github.com/JSYoo5B/ConfigurationFiles/blob/master/zsh/.zsh_aliases)
few alias commands to improve shell command usage (ex. color).
## linux

## Windows (common)
* [Change "Caps Lock" key's keycode to "LCTRL"](https://github.com/JSYoo5B/ConfigurationFiles/blob/master/Windows/caps_lock_to_control.reg)
### zsh
* [jsyoo5b.zsh-theme](https://github.com/JSYoo5B/ConfigFiles/blob/master/linux/zsh/jsyoo5b.zsh-theme)
based on [dst.zsh-theme](https://github.com/robbyrussell/oh-my-zsh/blob/master/themes/dst.zsh-theme) with oh-my-zsh
paste on $HOME/.oh-my-zsh/custom/themes/
* [.zshrc](https://github.com/JSYoo5B/ConfigFiles/blob/master/linux/zsh/.zshrc)
.zshrc with oh-my-zshrc
* [.zsh_aliases](https://github.com/JSYoo5B/ConfigFiles/blob/master/linux/zsh/.zsh_aliases)
few alias commands to improve shell command usage (ex. color).
* [.zsh_devconfig](https://github.com/JSYoo5B/ConfigFiles/blob/master/linux/zsh/.zsh_devconfig)

## Windows
* [Change "Caps Lock" key's keycode to "LCTRL"](https://github.com/JSYoo5B/ConfigFiles/blob/master/Windows/caps_lock_to_control.reg)

### Windows 10
* [Removing not used apps from windows 10 default apps](https://github.com/JSYoo5B/ConfigurationFiles/blob/master/Windows%2010/Remove_unnecessary_programs.ps1)
* [Remove "OneDrive" folder from File Explorer's sidebar](https://github.com/JSYoo5B/ConfigurationFiles/blob/master/Windows%2010/Remove_OneDrive_From_SIdebar.reg)
* [Remove "Quick Access" folder from File Explorer's sidebar](https://github.com/JSYoo5B/ConfigurationFiles/blob/master/Windows%2010/Remove_Quick_access_From_Sidebar.reg)
* [Removing not used apps from windows 10 default apps](https://github.com/JSYoo5B/ConfigFiles/blob/master/Windows%2010/Remove_unnecessary_programs.ps1)
* [Remove "OneDrive" folder from File Explorer's sidebar](https://github.com/JSYoo5B/ConfigFiles/blob/master/Windows%2010/Remove_OneDrive_From_SIdebar.reg)
* [Remove "Quick Access" folder from File Explorer's sidebar](https://github.com/JSYoo5B/ConfigFiles/blob/master/Windows%2010/Remove_Quick_access_From_Sidebar.reg)
Requires editing permission from Registry Editor ([link](http://www.windowscentral.com/how-remove-quick-access-file-explorer-windows-10))

## VIM

Installation of VUNDLE plugin and some vimrc configuration
13 changes: 13 additions & 0 deletions linux/zsh/.zsh_devconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
#!/bin/zsh

############################################################################
## Common configuration #
############################################################################
export PATH_ORG=$PATH
export GCC_COLORS='error=01;31:warning=01;35:note=01;36:caret=-1;32:locus=01:quote=01'

export PATH="$PATH:/usr/local/opt/qt/bin"

if [ -x "$(command -v direnv)" ]; then
eval "$(direnv hook zsh)"
fi
12 changes: 12 additions & 0 deletions linux/zsh/.zshrc
Original file line number Diff line number Diff line change
Expand Up @@ -36,9 +36,16 @@ source $ZSH/oh-my-zsh.sh
# manual path
export MANPATH="/usr/local/man:$MANPATH"

# Set default editor
export VISUAL=vim
export EDITOR="$VISUAL"

# Language environment
export LANG=en_US.UTF-8

# X-Window configuration
export DISPLAY=:0

# Import alias configuration files
if [ -f ~/.zsh_aliases ]; then
source ~/.zsh_aliases
Expand All @@ -48,3 +55,8 @@ fi
if [ -f ~/.zsh_devconfig ]; then
source ~/.zsh_devconfig
fi

# load fzf
if [ -f ~/.fzf.zsh ]; then
source ~/.fzf.zsh
fi

0 comments on commit e61c93b

Please sign in to comment.