37 lines
481 B
VimL
37 lines
481 B
VimL
" disable vi compatibility
|
|
set nocompatible
|
|
|
|
" choose based on filetype
|
|
filetype on
|
|
filetype plugin on
|
|
|
|
" syntax highlighting
|
|
syntax on
|
|
|
|
" basic functions
|
|
set number
|
|
set cursorline
|
|
set termguicolors
|
|
set nowrap
|
|
set showcmd
|
|
set history=1000
|
|
set wildmenu
|
|
set wildmode=list:longest
|
|
|
|
" tabs
|
|
set expandtab
|
|
set tabstop=4
|
|
set shiftwidth=4
|
|
|
|
" searching
|
|
set incsearch
|
|
set ignorecase
|
|
set smartcase
|
|
set hlsearch
|
|
|
|
" theme
|
|
colorscheme catppuccin_macchiato
|
|
|
|
" plugins
|
|
autocmd VimEnter * NERDTree
|