From 8e5173a2d25c8f79607f4806016276065abda41c Mon Sep 17 00:00:00 2001 From: iamcheeseman Date: Sun, 10 May 2026 18:36:22 -0400 Subject: update --- .vimrc | 60 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 60 insertions(+) create mode 100644 .vimrc (limited to '.vimrc') diff --git a/.vimrc b/.vimrc new file mode 100644 index 0000000..be19333 --- /dev/null +++ b/.vimrc @@ -0,0 +1,60 @@ +set termguicolors +set relativenumber +set number +set splitright +set splitbelow +set ignorecase +set cursorline +set signcolumn=no +set background=dark +set cc=80 +set tabstop=4 +set shiftwidth=4 +set expandtab +set autoindent +set smartindent +set wrap +set undofile +set nobackup +set nowritebackup +set noswapfile +set laststatus=2 +set notimeout +set hlsearch +set cinoptions+=:0,N-s,E-s,(s,m1,t0 +set completeopt=menu,menuone,noselect +set autoread + +filetype plugin on +filetype indent on +syntax on + +let mapleader = " " +let netrw_banner = 0 +let fuzzbox_mappings = 0 +let g:apc_enable_ft = {'c':1} +let g:netrw_list_hide = '\~$' + +xmap ga (EasyAlign) +nmap ga (EasyAlign) +nmap f :FuzzyFilesRoot +nmap t :! ctags -R . + +nnoremap :noh +nnoremap zz +nnoremap zz +nnoremap gd +nnoremap gD f(b[ + +au FileType lua set tabstop=2 +au FileType lua set shiftwidth=2 + +colors mooncheese +hi clear Error + +call plug#begin() + +Plug 'vim-fuzzbox/fuzzbox.vim' +Plug 'tpope/vim-fugitive' + +call plug#end() -- cgit v1.3-2-g0d8e