tmux and nvim changes

This commit is contained in:
2025-10-06 21:30:57 -07:00
parent 42b0e5c64d
commit e9df39d7ea
9 changed files with 41 additions and 44 deletions

View File

@@ -1,8 +1,17 @@
set nocompatible
syntax on
filetype plugin on
set autoread " Set to auto read when a file is changed from the outside
filetype plugin indent on
set number
set relativenumber
set expandtab
set shiftwidth=4
set softtabstop=4
set tabstop=4
set smartindent
set backspace=indent,eol,start
set autoread " Set to auto read when a file is changed from the outside
set path+=**
set wildmenu
set showcmd
@@ -38,16 +47,6 @@ set colorcolumn=81
"highlight BadWhitespace ctermbg=darkgreen guibg=darkgreen
"au BufNewFile,BufRead *.py,*.pyw,*.c,*.h,*.cc,*.hh,*.sh match BadWhitespace /\s\+$/
" File settings
au FileType *
\ set tabstop=2
\ softtabstop=2
\ shiftwidth=2
\ textwidth=79
\ autoindent
\ smartindent
"Python Specific Config
au FileType python
\ set fileformat=unix
\ encoding=utf-8