updated nvim config

This commit is contained in:
Thies Lennart Alff 2023-07-08 13:47:46 +02:00
parent 30ca8ab4e3
commit 0553705627
3 changed files with 11 additions and 1 deletions

View file

@ -0,0 +1,9 @@
require('gitsigns').setup {
signs = {
add = {text='+'},
change = {text='~'},
delete = {text='_'},
topdelete = {text=''},
changedelete = {text='~'},
}
}

View file

@ -3,6 +3,7 @@ vim.cmd [[packadd packer.nvim]]
return require('packer').startup(function(use)
-- Packer can manage itself
use 'wbthomason/packer.nvim'
use 'lewis6991/gitsigns.nvim'
use {
'nvim-telescope/telescope.nvim', tag = '0.1.1',
-- or , branch = '0.1.x',

View file

@ -1,4 +1,4 @@
vim.opt.guicursor = ''
-- vim.opt.guicursor = ''
-- line numbers
vim.opt.nu = true