ubuntu vim settings

hogeol·2022년 9월 17일
0

Ubuntu

목록 보기
11/12

Install vim

sudo apt install -y vim

Edit vim settings

gedit ~/.vimrc

set ruler "Show current position"
set hlsearch "Highlight search results"
set incsearch "Makes search act like search in modern browsers"
set showmatch "Show matching brackets"
set number "Show line number"
set shiftwidth=2 "Auto blank = 2"
set tabstop=2 "Tab size = 2"
set cindent "Set c style indent"
set ignorecase "Ignore lower and upper case when searching"

0개의 댓글