Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | ||||||
2 | 3 | 4 | 5 | 6 | 7 | 8 |
9 | 10 | 11 | 12 | 13 | 14 | 15 |
16 | 17 | 18 | 19 | 20 | 21 | 22 |
23 | 24 | 25 | 26 | 27 | 28 |
Tags
- vim 찾아 바꾸기
- git commit message
- apt clean
- Resolution Changing
- 프로그래머스
- tensorflow model load
- gnuplot csv
- vim 치환
- VirtualBox
- apt autoremove
- Leetcode 121
- csv x range
- Climbing Stairs
- linux bash
- linux prompt color
- python3
- 걸쳐서 그림 넣기
- 프로그래머스 실패율
- Python Imaging Library
- without nohup.out
- vim 괄호 비활성화
- url reference
- 프로그래머스 구명보트
- Leetcode 70
- vi/vim commands
- latex 첨자
- vim set noshowmatch
- LaTeX figure
- 프로그래머스 체육복
- vi/vim 명령어
Archives
- Today
- Total
목록Programming/Vim (2)
기억노트
[Vim] 괄호 매칭하는 기능 비활성화
~/.vimrc에 set noshowmatch를 추가해주어도 매칭되는 괄호에 계속 하이라이팅이 되어있어서 찾아보니 다음 코드로 비활성화 시킬 수 있었다. let g:loaded_matchparen=1
Programming/Vim
2022. 1. 14. 20:16
[Vim] 내가 사용하고 있는 .vimrc
set rtp+=~/.vim/bundle/Vundle.vim call vundle#begin() Plugin 'VundleVim/Vundle.vim' Plugin 'preservim/nerdtree' Plugin 'nathanaelkane/vim-indent-guides' Plugin 'frazrepo/vim-rainbow' Plugin 'Valloric/YouCompleteMe' Plugin 'tpope/vim-fugitive' Plugin 'git://git.wincent.com/command-t.git' Plugin 'file:///home/gmarik/path/to/plugin' Plugin 'rstacruz/sparkup', {'rtp': 'vim/'} call vundle#end() filet..
Programming/Vim
2021. 12. 9. 02:18