updated nvim config
This commit is contained in:
parent
30ca8ab4e3
commit
0553705627
3 changed files with 11 additions and 1 deletions
9
after/plugin/gitsigns.lua
Normal file
9
after/plugin/gitsigns.lua
Normal file
|
|
@ -0,0 +1,9 @@
|
||||||
|
require('gitsigns').setup {
|
||||||
|
signs = {
|
||||||
|
add = {text='+'},
|
||||||
|
change = {text='~'},
|
||||||
|
delete = {text='_'},
|
||||||
|
topdelete = {text='‾'},
|
||||||
|
changedelete = {text='~'},
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
@ -3,6 +3,7 @@ vim.cmd [[packadd packer.nvim]]
|
||||||
return require('packer').startup(function(use)
|
return require('packer').startup(function(use)
|
||||||
-- Packer can manage itself
|
-- Packer can manage itself
|
||||||
use 'wbthomason/packer.nvim'
|
use 'wbthomason/packer.nvim'
|
||||||
|
use 'lewis6991/gitsigns.nvim'
|
||||||
use {
|
use {
|
||||||
'nvim-telescope/telescope.nvim', tag = '0.1.1',
|
'nvim-telescope/telescope.nvim', tag = '0.1.1',
|
||||||
-- or , branch = '0.1.x',
|
-- or , branch = '0.1.x',
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
vim.opt.guicursor = ''
|
-- vim.opt.guicursor = ''
|
||||||
|
|
||||||
-- line numbers
|
-- line numbers
|
||||||
vim.opt.nu = true
|
vim.opt.nu = true
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue