feat(plugins): add heirline

This commit is contained in:
Nicolas Goudry 2024-06-06 08:06:53 +02:00
parent 17c2f0e776
commit eb23c9e4b1
No known key found for this signature in database
GPG key ID: 5FC434D9FFD1DF44
4 changed files with 231 additions and 3 deletions

View file

@ -7,6 +7,21 @@
(import ./package { inherit lib pkgs; })
];
config = "require('astrocore').setup({})";
# https://github.com/AstroNvim/AstroNvim/blob/v4.7.7/lua/astronvim/plugins/_astrocore_options.lua#L49-L53
config = ''
local g = {}
g.markdown_recommended_style = 0
if not vim.t.bufs then vim.t.bufs = vim.api.nvim_list_bufs() end -- initialize buffer list
require('astrocore').setup({
g = {
markdown_recommended_style = 0,
},
t = {
bufs = vim.t.bufs,
},
})
'';
};
}