fix lsp to and code completion

This commit is contained in:
2025-09-26 23:14:04 -05:00
parent 91fe229e59
commit 42b0e5c64d
13 changed files with 137 additions and 193 deletions

View File

@@ -17,28 +17,26 @@ set showmatch
set ruler
set wrap
set showbreak=↳\ \
set textwidth=79
set hidden
set backspace=indent,eol,start
set hlsearch
set noswapfile
set mouse= "remove mouse
set clipboard=unnamedplus
"set clipboard=unnamedplus
" Rendering
set ttyfast
set laststatus=1
set t_Co=256
set background=dark
let &t_ut=''
set colorcolumn=81
hi ColorColumn ctermbg=lightgrey guibg=lightgrey
"hi ColorColumn ctermbg=lightgrey guibg=lightgrey
" Show bad whitespace in an obvious but not obnoxious color
highlight pythonSpaceError ctermbg=darkgreen guibg=darkgreen
highlight BadWhitespace ctermbg=darkgreen guibg=darkgreen
au BufNewFile,BufRead *.py,*.pyw,*.c,*.h,*.cc,*.hh,*.sh match BadWhitespace /\s\+$/
"highlight pythonSpaceError ctermbg=darkgreen guibg=darkgreen
"highlight BadWhitespace ctermbg=darkgreen guibg=darkgreen
"au BufNewFile,BufRead *.py,*.pyw,*.c,*.h,*.cc,*.hh,*.sh match BadWhitespace /\s\+$/
" File settings
au FileType *
@@ -52,14 +50,8 @@ au FileType *
"Python Specific Config
au FileType python
\ set fileformat=unix
\ tabstop=4
\ softtabstop=4
\ shiftwidth=4
\ encoding=utf-8
au FileType markdown,tex
\ set spell spelllang=en_us
\ tabstop=4
\ softtabstop=4
\ shiftwidth=4
\ set spell spelllang=en_us