1
0
Fork 0

feat: revamp

This commit is contained in:
cătălin 2023-04-24 12:47:11 +02:00
commit f56d076f52
Signed by: catalin
GPG key ID: 0178DF42F43E5FD2
32 changed files with 127 additions and 831 deletions

29
vimrc Normal file
View file

@ -0,0 +1,29 @@
filetype on
filetype plugin on
filetype indent on
syntax on
set nocompatible
set number
set cursorline
set cursorcolumn
set shiftwidth=4
set tabstop=4
set expandtab
set nobackup
set scrolloff=10
set nowrap
set incsearch
set ignorecase
set smartcase
set showcmd
set showmode
set showmatch
set hlsearch
set history=1000
set wildmenu
set wildmode=list:longest
set wildignore=*.docx,*.jpg,*.png,*.gif,*.pdf,*.pyc,*.exe,*.flv,*.img,*.xlsx
augroup filetype_vim
autocmd!
autocmd FileType vim setlocal foldmethod=marker
augroup END