more tweaking, idiot

This commit is contained in:
2024-11-05 14:26:14 -05:00
parent df1d890b3c
commit 8843f5d24c
2 changed files with 17 additions and 11 deletions

7
vimrc
View File

@@ -25,7 +25,7 @@ nmap gd :ALEGoToDefinition<CR>
nmap gr :ALEFindReferences<CR>
let g:ale_sign_column_always=1
let g:ale_change_sign_column_color=1
:highlight SignColumn ctermbg=238
dfd:highlight SignColumn ctermbg=238
set laststatus=2
set paste
"colorscheme google
@@ -34,3 +34,8 @@ set paste
"colorscheme madeofcode
"colorscheme h80
colorscheme badwolf
" Remember cursor position
if has("autocmd")
au BufReadPost * if line("'\"") > 1 && line("'\"") <= line("$") | execute "normal! g`\"" | endif
endif