Contents

System/OS
2022.02.25 17:52

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

Views 833 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
10 System/OS 맥에서 파일공유 (윈도우,맥) file hooni 2013.04.25 37305
9 System/OS 맥에서 포트 확인하고 닫기 (mac) hooni 2022.03.22 904
8 System/OS 무료로 HTTPS 적용하기 (Let's Encrypt) file hooni 2017.10.28 1407
7 System/OS 무료로 HTTPS 적용하기 (Lets' Encrypt) file hooni 2017.02.16 2188
6 System/OS 무선 인증 서버.. 김도.. ㅋㅋ file hooni 2013.04.23 17595
5 System/OS 서버 확장을 위한 두 가지 방법 file hooni 2018.08.29 2106
4 System/OS 아파치(Apache) 인증사용(htaccess)으로 특정 디렉토리에 암호걸기 hooni 2013.04.23 13659
3 System/OS 컴파일러 수업 자료(교재 : 컴파일러 입문) file hooni 2003.04.23 21969
2 System/OS 콘솔에서 패스워드 걸린 zip 압축하는 명령 hooni 2018.03.02 950
1 System/OS 해커스랩 깨기.. 후후.. ㅋㅋ file hooni 2013.04.23 18414
Board Pagination Prev 1 ... 8 9 10 11 12 13 14 15 16 17 Next
/ 17