diff options
| author | Mel <einebeere@gmail.com> | 2024-10-29 03:29:54 +0100 |
|---|---|---|
| committer | Mel <einebeere@gmail.com> | 2024-10-29 04:21:41 +0100 |
| commit | 27bc3d6a80af38c2d63a67283880f783dc869e0d (patch) | |
| tree | 4498c1459da527f6200ab00f76b64f4c73feaa82 /configs/.vimrc | |
| parent | 8bde803701a1f1cff18c7b8bfc5fe6363b1e1b97 (diff) | |
| download | minerals-27bc3d6a80af38c2d63a67283880f783dc869e0d.tar.zst minerals-27bc3d6a80af38c2d63a67283880f783dc869e0d.zip | |
Expand common vim config
Signed-off-by: Mel <einebeere@gmail.com>
Diffstat (limited to 'configs/.vimrc')
| -rw-r--r-- | configs/.vimrc | 18 |
1 files changed, 15 insertions, 3 deletions
diff --git a/configs/.vimrc b/configs/.vimrc index 79ae89a..fbaf7ed 100644 --- a/configs/.vimrc +++ b/configs/.vimrc @@ -1,3 +1,5 @@ +" COMMON VIM SETTINGS, REV. 2 + " NECESSITIES: " disable vi compatability, if still on for some reason @@ -22,9 +24,6 @@ set nowrap " allow backspace over everything, default is dumb set backspace=indent,eol,start -" never hide statusbar -set laststatus=2 - " search settings set incsearch set hlsearch @@ -36,12 +35,22 @@ nnoremap <silent> <C-L> :noh<C-R><CR><CR><C-L> " open windows below and to the right of current (why is the default opposite lol) set splitbelow splitright +" bar settings +" never hide statusbar +set laststatus=2 " show unfinished command in the last line (like 4dd) set showcmd +" enable command tab completion +set wildmenu +" expand command line history +set history=250 " show relative numbers and absolute number for current line set number relativenumber +" always show at least 2 more lines below or above cursor +set scrolloff=2 + " COLOR: " temporary default color scheme @@ -50,6 +59,9 @@ colorscheme habamax " dont change default background color highlight Normal ctermbg=NONE +" enable bright colors +set t_Co=16 + " CUSTOMIZATION: " disable arrow keys, use hjkl instead |
