added incline

This commit is contained in:
Oliver Hartmann 2022-05-13 13:40:46 +02:00
parent c54a515556
commit 892ac617ee
3 changed files with 6 additions and 0 deletions

View File

@ -43,6 +43,7 @@ opt.expandtab= true
opt.smartindent= true
opt.title = true
opt.titlestring = '%{getcwd()} - %t'
opt.laststatus = 3
-- go to previous/next line with h,l,left arrow and right arrow
-- when cursor reaches end/beginning of line

View File

@ -186,6 +186,10 @@ return require('packer').startup(function()
},
config = get_setup('octo')
}
use {
'b0o/incline.nvim',
config = get_setup('incline')
}
if packer_bootstrap then
require('packer').sync()
end

1
lua/setup/incline.lua Normal file
View File

@ -0,0 +1 @@
require('incline').setup()