feat: revamp
This commit is contained in:
parent
40c6e1c4b0
commit
f56d076f52
32 changed files with 127 additions and 831 deletions
29
vimrc
Normal file
29
vimrc
Normal file
|
|
@ -0,0 +1,29 @@
|
|||
filetype on
|
||||
filetype plugin on
|
||||
filetype indent on
|
||||
syntax on
|
||||
set nocompatible
|
||||
set number
|
||||
set cursorline
|
||||
set cursorcolumn
|
||||
set shiftwidth=4
|
||||
set tabstop=4
|
||||
set expandtab
|
||||
set nobackup
|
||||
set scrolloff=10
|
||||
set nowrap
|
||||
set incsearch
|
||||
set ignorecase
|
||||
set smartcase
|
||||
set showcmd
|
||||
set showmode
|
||||
set showmatch
|
||||
set hlsearch
|
||||
set history=1000
|
||||
set wildmenu
|
||||
set wildmode=list:longest
|
||||
set wildignore=*.docx,*.jpg,*.png,*.gif,*.pdf,*.pyc,*.exe,*.flv,*.img,*.xlsx
|
||||
augroup filetype_vim
|
||||
autocmd!
|
||||
autocmd FileType vim setlocal foldmethod=marker
|
||||
augroup END
|
||||
Loading…
Add table
Add a link
Reference in a new issue