editor config added, spaces instead of tabs no more

This commit is contained in:
joelchrono12 2022-06-18 13:50:43 -05:00
parent da15e90344
commit 8fc87f5624
Signed by: chrono
GPG Key ID: E23D9C7FA57497A6
2 changed files with 4 additions and 3 deletions

View File

@ -3,9 +3,9 @@ source $HOME/.config/nvim/vim-plug/plugins.vim
syntax on syntax on
set encoding=utf-8 set encoding=utf-8
set tabstop=4 softtabstop=4 "set tabstop=4 softtabstop=4
set shiftwidth=4 "set shiftwidth=4
set expandtab "set expandtab
set guicursor= set guicursor=
set nowrap set nowrap
set nohlsearch set nohlsearch

View File

@ -40,4 +40,5 @@ call plug#begin('~/.config/nvim/autoload/plugged')
Plug 'masukomi/vim-markdown-folding' Plug 'masukomi/vim-markdown-folding'
Plug 'vim-airline/vim-airline' Plug 'vim-airline/vim-airline'
Plug 'vim-airline/vim-airline-themes' Plug 'vim-airline/vim-airline-themes'
Plug 'editorconfig/editorconfig-vim'
call plug#end() call plug#end()