From 497a318230474f126cfc74558645441c85a3bee2 Mon Sep 17 00:00:00 2001 From: Santiago Lo Coco Date: Sat, 28 Dec 2024 23:15:54 +0100 Subject: [PATCH] Update nvim settings --- dotfiles/.config/nvim/init.vim | 2 +- dotfiles/.config/nvimpager/init.vim | 42 +++++------------------------ 2 files changed, 7 insertions(+), 37 deletions(-) diff --git a/dotfiles/.config/nvim/init.vim b/dotfiles/.config/nvim/init.vim index 383d830..1644543 100644 --- a/dotfiles/.config/nvim/init.vim +++ b/dotfiles/.config/nvim/init.vim @@ -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 diff --git a/dotfiles/.config/nvimpager/init.vim b/dotfiles/.config/nvimpager/init.vim index 76c895e..2cecdf5 100644 --- a/dotfiles/.config/nvimpager/init.vim +++ b/dotfiles/.config/nvimpager/init.vim @@ -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 vim +set nocompatible +filetype plugin on +syntax on +set encoding=utf-8 +set number relativenumber -"colorscheme delek - -" Some basics: - "nnoremap c "_c - 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 h - "map j - "map k - "map 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