내가 사용하는 Mac(들)에다 하는 세팅.. 어딘가 기록해두고 싶어 기록해둔다.
1) oh-my-zsh 등 설치
brew install wget vim zsh tmux
git clone https://github.com/VundleVim/Vundle.vim.git ~/.vim/bundle/Vundle.vim
cp .vimrc ~/
vim +PluginInstall +qall
sh -c "$(wget https://raw.githubusercontent.com/robbyrussell/oh-my-zsh/master/tools/install.sh -O -)"
git clone https://github.com/zdharma/fast-syntax-highlighting.git ~/.oh-my-zsh/custom/plugins/fast-syntax-highlighting
git clone https://github.com/zsh-users/zsh-autosuggestions ~/.oh-my-zsh/custom/plugins/zsh-autosuggestions
2) vimrc
syntax on
set nu
set tabstop=4
set autoindent
set cindent
set title
set wmnu
set showmatch
set nocompatible
set nowrap
set paste
set laststatus=2
set cursorline
hi Cursor ctermbg=15 ctermfg=8
hi CursorLine ctermbg=14 ctermfg=16 cterm=bold guibg=Grey40
set rtp+=~/.vim/bundle/Vundle.vim
call vundle#begin()
Plugin 'gmarik/Vundle.vim'
Bundle 'Lokaltog/powerline', {'rtp': 'powerline/bindings/vim/'}
call vundle#end()
set laststatus=2
3) zshrc
export ZSH=$HOME/.oh-my-zsh
ZSH_THEME="agnoster"
plugins=(git history brew sublime bower node npm sudo web-search zsh-autosuggestions fast-syntax-highlighting)
export PATH="/usr/bin:/bin:/usr/sbin:/sbin:/usr/local/bin"
source $ZSH/oh-my-zsh.sh
source ~/.bashrc
source /Users/user/zsh-syntax-highlighting/zsh-syntax-highlighting.zsh
4) 덧
요즘은 vim으로 LaTeX 편집하진 않음.. Overleaf에서 주로 작업.
그리고 티스토리 기본 코드 블럭 기능 만지는게 쉽지는 않다. 기본 에디터 모드에서는 언어를 bash로 선택할 수 없어서 마크다운 모드로 바꿨다가, 다시 기본 모드로 바꿈
'Computer Science' 카테고리의 다른 글
Massively Parallel Computing Model (0) | 2023.05.27 |
---|---|
Unique Games Conjecture에 대한 노트 (0) | 2022.11.13 |
The Short-Side Advantage in Random Matching Markets (0) | 2022.10.01 |
Computational Complexity Classes (0) | 2022.09.29 |
Redis는 어떻게 key를 expire 하는가? (0) | 2022.09.14 |