본문 바로가기

개발 이야기

MacBook setting

mac app 설치 가이드

shell 설정

bash_profile 설정
vi . bash_profile
export CLICOLOR=1
export LSCOLORS=GxFxCxDxBxegedabagaced
export PS1='\[\033[01;32m\]\u@\h\[\033[00m\]:\[\033[01;34m\]\w\[\033[00m\]\$ '
 
export LSCOLORS=FxGxbxfxhxgxexhbabdxDx
 
export GREP_OPTIONS='--color=auto'
alias ls='ls -GFh'
alias ll='ls -alG'

brew 설치

설치 URLbrew 설치 사이트

  • brew update 오류 시 특정 directory 권한 오류시 해결 방안

cd /usr/local/ 
sudo chown -R [user 계정] *
  • home brew install 시 child process 오류시

brew install caskformula/caskformula/inkscape --HEAD --branch-0.92

Jmeter 설치

brew install jmeter 
  • 실행

yeonjongcho@yeons-MacBook-Pro:~/pointwell/realConnet$ jmeter 

파이션 설치

brew install python

brew install python3  

sudo easy_install pip

curl -O https://bootstrap.pypa.io/get-pip.py

python3 get-pip.py --user

pip3 install awscli --upgrade --user

메시지 App

Sublime Text 설치 사이트

MacVim 설치

brew cask install macvim

.vimrc 참조


set nocompatible

filetype off
set rtp+=~/.vim/bundle/Vundle.vim
call vundle#begin()

Plugin 'gmarik/Vundle.vim' "required
Plugin 'tpope/vim-fugitive' "required

Plugin 'tpope/vim-sensible'
Plugin 'scrooloose/nerdtree'
Plugin 'scrooloose/syntastic'
Plugin 'scrooloose/nerdcommenter'
Plugin 'mattn/emmet-vim'
Plugin 'Shougo/neocomplcache.vim'
Plugin 'nathanaelkane/vim-indent-guides'
Plugin 'altercation/vim-colors-solarized'

call vundle#end()            
filetype plugin indent on " Put your non-Plugin stuff after this line

set tabstop=4
set shiftwidth=4
set expandtab
set ai
set nu
set ruler
syntax on
set hlsearch
set noimd
set imi=1
set ims=-1

set guifont=Monaco:h11

set background=dark
colorscheme solarized
inoremap {{}<Left>
inoremap {<CR>{<R>}<Esc>O
inoremap {{{
inoremap {}{}

let g:user_emmet_leader_key='<C-Z>'
let g:neocomplcache_enable_at_startup=1
let g:solarized_termcolors=256

let mapleader=","
set timeout timeoutlen=1500

VLC Palyer

폰트 설치

이미지 뷰어

화면 캡쳐

사파리 확장 기능

program

VPN 설치


'개발 이야기 ' 카테고리의 다른 글

Mac apache 설치 하기  (0) 2019.02.12
코인 히스토리  (0) 2019.02.07
MarkDown 문법들  (0) 2019.02.07