Don't enforce truecolor (breaks TTY vim)

This commit is contained in:
ItsDrike 2021-05-03 19:08:22 +02:00
parent a5f96655ae
commit beb09a592d
No known key found for this signature in database
GPG key ID: B5F6B41F708C3ADD

View file

@ -18,13 +18,13 @@ set autoindent " Enable autoindent
set ruler " Show cursor position set ruler " Show cursor position
set cursorline " Highlight cursor line set cursorline " Highlight cursor line
set mouse=a " Enable mouse mode set mouse=a " Enable mouse mode
set termguicolors " Enable true colors
set backspace=indent,eol,start " Delete everything set backspace=indent,eol,start " Delete everything
set laststatus=2 " Always show status line set laststatus=2 " Always show status line
set wildmode=longest,list,full " Enable autocompletion set wildmode=longest,list,full " Enable autocompletion
set splitbelow splitright " Split in more natural way set splitbelow splitright " Split in more natural way
"set nomodeline " Disable as a security precaution "set nomodeline " Disable as a security precaution
"set termguicolors " Enable true colors (breaks TTY vim)
"set wildmenu " Enable wildmenu "set wildmenu " Enable wildmenu
"set conceallevel=0 " Disable concealing "set conceallevel=0 " Disable concealing
"set complete-=i " Better completion "set complete-=i " Better completion