From 8587d7b61a2b7c09d8a7cdfd3ce75c265ad53eb2 Mon Sep 17 00:00:00 2001 From: Mitsuo Tokumori Date: Thu, 7 Nov 2019 22:40:32 -0500 Subject: Moved vimrc to ./.vim/vimrc --- .vim/vimrc | 48 ++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 48 insertions(+) create mode 100644 .vim/vimrc (limited to '.vim/vimrc') diff --git a/.vim/vimrc b/.vim/vimrc new file mode 100644 index 0000000..e1ba892 --- /dev/null +++ b/.vim/vimrc @@ -0,0 +1,48 @@ +" Shit that gets disabled because I created this file +set nocompatible +filetype indent plugin on +syntax on +set wildmenu +set showcmd + +" Numbers +set number + +" Search +set hlsearch + +" Indentation +set tabstop=8 +set softtabstop=4 +set shiftwidth=4 +set noexpandtab +set smarttab +set autoindent +set smartindent + +" Word wrap +set wrap +set linebreak +" Set textwidth when you know how to quickly 'justify' comments or block of +" text. This is a really nice feature, but how can I edit C comments without +" leaving some lines short? +" set textwidth=80 +" set wrapmargin=0 +" set formatoptions-=t + +" Other settings +" ============== +set mouse=a +" set cmdheight=1 +" Always display the status line, even if only one window is displayed +set laststatus=2 +set ruler + +" Mappings +" ======== +map :tabp +map :tabn + +" ? Map (redraw screen) to also turn off search highlighting until the +" next search +nnoremap :nohl -- cgit v1.2.3