mirror of
https://github.com/ivabus/dotfiles
synced 2024-11-13 03:35:17 +03:00
22 lines
385 B
VimL
22 lines
385 B
VimL
filetype plugin indent on
|
|
set showmatch
|
|
set hlsearch
|
|
set incsearch
|
|
set autoindent
|
|
set expandtab
|
|
set tabstop=4
|
|
set shiftwidth=4
|
|
set number
|
|
set wildmode=longest, list
|
|
set cc=80
|
|
syntax on
|
|
set noswapfile
|
|
set backupdir=~/.cache/vim
|
|
set completeopt=noinsert,menuone,noselect
|
|
set cursorline
|
|
set relativenumber
|
|
|
|
call plug#begin()
|
|
Plug 'catppuccin/nvim', { 'as': 'catppuccin' }
|
|
call plug#end()
|