Initial Settings : Vim Settings2021/08/17 |
Configure Vim that is more convenience than vi.
|
|
[1] | Install Vim. |
root@dlp:~# apt -y install vim
|
[2] | Configure Vim. On the example below, Apply to a user. If you'd like to applly to all users as system wide, add the settings in [/etc/vim/vimrc]. |
debian@localhost:~$
vi ~/.vimrc " use extended feature of vim (no compatible with vi) set nocompatible " specify encoding set encoding=utf-8 " specify file encoding set fileencodings=utf-8,iso-2022-jp,sjis,euc-jp " specify file formats set fileformats=unix,dos " take backup " if disable, specify [ set nobackup ] set backup " specify backup directory set backupdir=~/backup " number of search histories set history=50 " ignore Case set ignorecase " distinct Capital if you mix it in search words set smartcase " highlights matched words " if disable, specify [ set nohlsearch ] set hlsearch " use incremental search " if disable, specify [ set noincsearch ] set incsearch " show line number " if disable, specify [ set nonumber ] set number " visualize break ( $ ) or tab ( ^I ) set list " highlights parentheses set showmatch " not insert LF at the end of file set binary noeol " enable auto indent " if disable, specify [ noautoindent ] set autoindent " show color display " if disable, specify [ syntax off ] syntax on " change colors for comments if it's set [ syntax on ] highlight Comment ctermfg=LightCyan " wrap lines " if disable, specify [ set nowrap ] set wrap |
Sponsored Link |