Add glow: the markdown previewer
Currently using my own fork, will change to upstream once the PR is accepted.
This commit is contained in:
parent
931400b709
commit
d64ee35bc8
@ -1,4 +1,5 @@
|
||||
-- Core Settings
|
||||
-- CORE SETTINGS
|
||||
|
||||
local opt = vim.o
|
||||
local global = vim.g
|
||||
|
||||
@ -26,5 +27,8 @@ opt.completeopt = 'noinsert'
|
||||
global.neoformat_basic_format_align = 1
|
||||
global.neoformat_basic_format_trim = 1
|
||||
|
||||
-- glow settings
|
||||
global.glow_border = "rounded"
|
||||
|
||||
-- leader settings
|
||||
global.mapleader = ' '
|
||||
|
@ -25,7 +25,7 @@ return require('packer').startup(function(use)
|
||||
after = 'packer.nvim',
|
||||
config = function()
|
||||
vim.g.serenade_enable_italic = 1
|
||||
vim.g.serenade_sign_column_background = 'none'
|
||||
vim.g.serenade_sign_column_background = 'none'
|
||||
vim.g.serenade_better_performance = 1
|
||||
vim.cmd("colorscheme serenade")
|
||||
end
|
||||
@ -162,4 +162,9 @@ return require('packer').startup(function(use)
|
||||
|
||||
-- integrations
|
||||
use {"tpope/vim-fugitive", cmd = "G"}
|
||||
use {
|
||||
"JuanCldCmt/glow.nvim",
|
||||
branch = 'main',
|
||||
cmd = {"Glow", "GlowInstall"}
|
||||
}
|
||||
end)
|
||||
|
Loading…
Reference in New Issue
Block a user