Created
January 7, 2023 11:43
-
-
Save krdlab/12b0023492e2341b3189465eb21a598c to your computer and use it in GitHub Desktop.
vim の設定
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
set virtualedit=onemore | |
set showmatch | |
set incsearch | |
set hlsearch | |
set ignorecase | |
set smartcase | |
set tabstop=4 | |
set shiftwidth=4 | |
set softtabstop=4 | |
set expandtab | |
set autoindent | |
set number | |
set cursorline | |
set cursorcolumn | |
set nospell | |
set iminsert=0 | |
set imsearch=0 | |
set formatoptions=q | |
set backspace=eol,indent | |
set ambiwidth=double | |
set clipboard=unnamed | |
set laststatus=2 | |
set list | |
set listchars=tab:›\ ,trail:.,extends:#,nbsp:. | |
set wildmode=list:longest | |
set encoding=utf-8 | |
set fileencodings=utf-8,sjis,iso-2022-jp,euc-jp | |
set fileformat=unix | |
set nofixendofline | |
set directory=~/.vimswap | |
set backupdir=~/.vimbackup | |
vnoremap < <gv | |
vnoremap > >gv | |
syntax enable | |
colorscheme desert |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment