silicon: replace font with JuliaMono

This commit is contained in:
Paul Campbell 2024-04-29 14:57:19 +01:00
parent e0612cde24
commit 1b23ccfef8

View file

@ -3,16 +3,16 @@ return {
lazy = true,
cmd = "Silicon",
keys = {
{ "<leader>sc", ":Silicon<CR>", desc = "Snapshot code block", mode = { "v" } }
{ "<leader>sc", ":Silicon<CR>", desc = "Snapshot code block", mode = { "v" } },
},
config = function()
require("silicon").setup({
require("silicon").setup {
-- Configuration here, or leave empty to use defaults
font = "VictorMono Nerd Font Mono=34;Noto Color Emoji=34",
font = "JuliaMono Nerd Font Mono=34;Noto Color Emoji=34",
theme = "Dracula",
window_title = function()
return vim.fn.fnamemodify(vim.api.nvim_buf_get_name(vim.api.nvim_get_current_buf()), ":t")
end,
})
end
}
end,
}