System/OS
2022.02.25 17:52

개인적으로 쓰고 있는 zshrc 파일

Views 824 Votes 0 Comment 0
?

Shortcut

PrevPrev Article

NextNext Article

Larger Font Smaller Font Up Down Go comment Print
?

Shortcut

PrevPrev Article

NextNext Article

Larger Font Smaller Font Up Down Go comment Print

최근에 Flutter 추가 ㅋㅋㅋ


#!/bin/zsh

# Add commonly used folders to $PATH
export PATH="/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin"

# Specify default editor. Possible values: vim, nano, ed etc.
export EDITOR=vim

# File search functions
function f() { find . -iname "*$1*" ${@:2} }
function r() { grep "$1" ${@:2} -R . }

# Create a folder and move into it in one command
function mkcd() { mkdir -p "$@" && cd "$_"; }

# Custom aliases
alias vm='~/bin/vm_manage.sh'
alias gg='~/bin/vm_console.sh'
alias zz='~/bin/vm_desktop.sh'
alias console='~/bin/vm_console.sh'
alias desktop='~/bin/vm_desktop.sh'
alias ll='ls -p'

# Example aliases
alias cppcompile='c++ -std=c++11 -stdlib=libc++'
alias g='git'

alias python='python3'
alias pip='pip3'
alias ll='ls -alp'

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

# Java 1.8
export JAVA_HOME=$(/usr/libexec/java_home -v 1.8)

export PATH=$HOME/.nodebrew/current/bin:$PATH

# Flutter
export PATH=$PATH:~/flutter/bin





?

List of Articles
No. Category Subject Author Date Views
202 System/OS Apache CORS 설정 1 hooni 2020.09.04 2710
201 System/OS asx미디어 정보 기록.. hooni 2003.04.23 20533
200 System/OS CentOS 6.5 USB 설치 6 file hooni 2013.12.18 37676
199 System/OS CentOS 에서 Cacti 설치하기 hooni 2015.01.02 1762
198 System/OS Configure Postfix to Use Gmail SMTP on Ubuntu 18.04 file hooni 2020.02.07 1248
197 System/OS Enable Safari Hidden Debug Menu in Mac OS X file hooni 2017.02.07 1142
196 System/OS Enable the Develop Menu in Safari file hooni 2017.02.07 1069
195 System/OS How to Install and Use wget on Mac file hooni 2020.09.03 1277
194 System/OS How to Setup an Email Server on CentOS 7 hooni 2018.04.05 2779
193 System/OS HTTP 프로토콜 (브라우저와 웹서버 간의 통신) hooni 2003.04.23 48250
192 System/OS HTTPS와 SSL 인증서 file hooni 2014.03.11 7546
191 System/OS iptime 공유기 해킹 기술문서 4 file hooni 2015.01.01 1941
190 System/OS Mac OS X - Apache+PHP+MySQL 환경 서버 hooni 2013.04.25 31627
189 System/OS Mac에서 Node.js 설치하기 file hooni 2018.09.28 4187
188 System/OS NAT와 DHCP에 대한 간단한 설명 hooni 2013.04.23 18328
187 System/OS OpenSSL로 ROOT CA 생성 및 SSL 인증서 발급하기 hooni 2017.10.28 1455
Board Pagination Prev 1 2 3 4 5 ... 13 Next
/ 13