Update nvim settings

This commit is contained in:
Santiago Lo Coco 2024-12-28 23:15:54 +01:00
parent f370955213
commit 497a318230
Signed by: slococo
GPG Key ID: F995EFC8B68B1ADF
2 changed files with 7 additions and 37 deletions

View File

@ -34,7 +34,7 @@ set clipboard=unnamed
" Though for this we need xsel (https://github.com/neovim/neovim/issues/7945)
" colorscheme delek
" colorscheme vim
colorscheme vim
nnoremap c "_c
set nocompatible

View File

@ -4,45 +4,15 @@ set bg=dark
set go=a
set mouse=a
set nohlsearch
" set clipboard+=unnamedplus
" Use this one if you want to use Middle click to paste copied text from vim
" set clipboard=unnamed
" Use this one if you want to use primary clipboard!
set clipboard=unnamedplus
" Though for this we need xsel (https://github.com/neovim/neovim/issues/7945)
"colorscheme delek
" Some basics:
"nnoremap c "_c
colorscheme vim
set nocompatible
filetype plugin on
syntax on
set encoding=utf-8
set number relativenumber
"set softtabstop=4
"set shiftwidth=4
" Enable autocompletion:
"set wildmode=longest,list,full
" Disables automatic commenting on newline:
"autocmd FileType * setlocal formatoptions-=c formatoptions-=r formatoptions-=o
" Splits open at the bottom and right, which is non-retarded, unlike vim defaults.
"set splitbelow splitright
" Shortcutting split navigation, saving a keypress:
"map <C-h> <C-w>h
"map <C-j> <C-w>j
"map <C-k> <C-w>k
"map <C-l> <C-w>l
" Replace ex mode with gq
"map Q gq
" Turns off highlighting on the bits of code that are changed, so the line that is changed is highlighted but the actual text that has changed stands out on the line and is readable.
if &diff
highlight! link DiffText MatchParen
endif