From 74cebff472e561dc275738833d2a77896e1e7cbc Mon Sep 17 00:00:00 2001 From: hc Date: Mon, 23 Mar 2026 20:16:45 +0800 Subject: move dotfiles into mac/ dir --- .vimrc | 51 --------------------------------------------------- 1 file changed, 51 deletions(-) delete mode 100644 .vimrc (limited to '.vimrc') diff --git a/.vimrc b/.vimrc deleted file mode 100644 index c45cfc9..0000000 --- a/.vimrc +++ /dev/null @@ -1,51 +0,0 @@ - -" Enable line wrapping -set wrap - -" Optional: Make wrapped lines easier to read by indenting them -set breakindent -set breakindentopt=shift:1 - -syntax on -set autoindent -set number -set mouse=a -set expandtab -set shiftwidth=4 -set softtabstop=4 -set tabstop=4 - -set autoindent -set smartindent -filetype plugin indent on - -set laststatus=2 " permanent status bar -set statusline=%F " shows full file path - -if (has("termguicolors")) - set termguicolors -endif - -colorscheme zellner -"colorscheme evening - -" Ctrl+A: Move to the beginning of the line in INSERT mode -inoremap - -" Ctrl+E: Move to the end of the line in INSERT mode -inoremap - -" Ctrl+A: Move to the beginning of the line in NORMAL mode -nnoremap 0 - -" Ctrl+E: Move to the end of the line in NORMAL mode -nnoremap $ -set clipboard=unnamed,unnamedplus -setlocal regexpengine=2 -set hlsearch -set foldcolumn=12 " Creates a small left margin of 2 columns -set noswapfile -autocmd InsertLeave * silent! update - - - -- cgit