diff options
| author | ottjk <joshott16@gmail.com> | 2023-12-30 19:34:07 -0500 |
|---|---|---|
| committer | ottjk <joshott16@gmail.com> | 2023-12-30 19:34:07 -0500 |
| commit | e50a69a7348bcbf43a710f7157d5f4f304f22d70 (patch) | |
| tree | ecf07d5bb2564a8cf62c0c91ddcd8887ce124397 /.vimrc | |
| parent | ed46f1c5e82709417085b1a3b7708b209c5f4bfe (diff) | |
| download | dotfiles-e50a69a7348bcbf43a710f7157d5f4f304f22d70.tar.gz dotfiles-e50a69a7348bcbf43a710f7157d5f4f304f22d70.zip | |
hidden files
Diffstat (limited to '.vimrc')
| -rw-r--r-- | .vimrc | 36 |
1 files changed, 36 insertions, 0 deletions
@@ -0,0 +1,36 @@ +set termguicolors +colorscheme catppuccin_macchiato +syntax on + +set nu +set relativenumber + +set tabstop=4 +set softtabstop=4 +set shiftwidth=4 +set expandtab + +set smartindent + +set nohlsearch +set incsearch + +set scrolloff=8 +set signcolumn=no +set cursorline +set cursorlineopt=number + +let mapleader = ' ' + +vnoremap <PageDown> :m '>+1<CR>gv=gv +vnoremap <PageUp> :m '<-2<CR>gv=gv + +noremap <Up> gk +noremap <Down> gj + +noremap J mzJ`z + +noremap o o<Esc> +noremap O O<Esc> + +noremap Q <nop> |