diff options
Diffstat (limited to '.vimrc')
| -rw-r--r-- | .vimrc | 14 |
1 files changed, 12 insertions, 2 deletions
@@ -1,5 +1,4 @@ set termguicolors -colorscheme catppuccin_macchiato syntax on set nu @@ -11,6 +10,7 @@ set shiftwidth=4 set expandtab set smartindent +set autoindent set nohlsearch set incsearch @@ -20,6 +20,9 @@ set signcolumn=no set cursorline set cursorlineopt=number +set ignorecase +set smartcase + let mapleader = ' ' vnoremap <PageDown> :m '>+1<CR>gv=gv @@ -33,4 +36,11 @@ noremap J mzJ`z noremap o o<Esc> noremap O O<Esc> -noremap Q <nop> +call plug#begin() + +" List your plugins here +Plug 'dylanaraps/wal.vim' + +call plug#end() + +colorscheme wal |