2
0
This commit is contained in:
ai
2026-04-03 08:36:53 +00:00
commit 67c20e9dab
15 changed files with 648 additions and 0 deletions

38
.vimrc Normal file
View File

@@ -0,0 +1,38 @@
set nocompatible
set encoding=utf-8
set fileencoding=utf-8
set number
set ruler
set cursorline
set showmatch
set laststatus=2
set wildmenu
set showcmd
set tabstop=4
set shiftwidth=4
set softtabstop=4
set autoindent
set smartindent
set incsearch
set hlsearch
set ignorecase
set smartcase
set wrapscan
set backspace=indent,eol,start
set clipboard=unnamed
set mouse=a
set ttimeoutlen=10
set undofile
set undodir=~/.vim/undo
let g:autosave = 1
inoremap <C-j> <Esc>
nnoremap Q :q!<CR>
vnoremap v V
syntax on
filetype plugin indent on
au BufReadPost * if line("'\"") > 0 && line("'\"") <= line("$") | exe "normal! g`\"" | endif