[nvim] fix tpipeline statusbar
This commit is contained in:
parent
46ae6deeba
commit
997adca013
2 changed files with 4 additions and 3 deletions
|
@ -31,8 +31,9 @@ vim.keymap.set("n", "<C-n>", "<cmd>cnext<CR>zz")
|
|||
vim.keymap.set("n", "<A-h>", "<cmd>bp<CR>")
|
||||
vim.keymap.set("n", "<A-l>", "<cmd>bn<CR>")
|
||||
--Undo dir
|
||||
vim.opt.undodir = os.getenv("HOME") .. "/.vim/undodir"
|
||||
vim.opt.undofile = true
|
||||
--Backup dir
|
||||
vim.opt.backup = true
|
||||
--Org mode hide links
|
||||
vim.opt.conceallevel = 2
|
||||
vim.opt.concealcursor = 'nc'
|
||||
|
|
|
@ -2,8 +2,8 @@ return {
|
|||
{
|
||||
"vimpostor/vim-tpipeline",
|
||||
config = function()
|
||||
vim.g.tpipeline_restore = 1
|
||||
vim.g.tpipeline_autoembed = 1
|
||||
vim.g.tpipeline_restore = 0
|
||||
vim.g.tpipeline_autoembed = 0
|
||||
vim.o.laststatus = 0
|
||||
vim.g.tpipeline_statusline = '%=%l:%c'
|
||||
end
|
||||
|
|
Loading…
Reference in a new issue