fix(programs/neovim): make neovide config platform independent
This commit is contained in:
parent
51c0f8f315
commit
5a5a5380a4
2 changed files with 6 additions and 7 deletions
|
@ -72,6 +72,11 @@ vim.keymap.set("n", "<C-k>", "<C-w><C-k>", { desc = "Move focus to the upper win
|
||||||
-- open neo-tree
|
-- open neo-tree
|
||||||
vim.keymap.set("n", "<leader>t", "<Cmd>Neotree reveal<CR>")
|
vim.keymap.set("n", "<leader>t", "<Cmd>Neotree reveal<CR>")
|
||||||
|
|
||||||
|
-- [[ neovide configuration ]]
|
||||||
|
if vim.g.neovide then
|
||||||
|
vim.o.guifont = "IosevkaTerm Nerd Font:h12"
|
||||||
|
end
|
||||||
|
|
||||||
-- [[ plugin configuration ]]
|
-- [[ plugin configuration ]]
|
||||||
require("catppuccin").setup({
|
require("catppuccin").setup({
|
||||||
flavour = "auto",
|
flavour = "auto",
|
||||||
|
|
|
@ -2,12 +2,6 @@
|
||||||
{
|
{
|
||||||
programs.neovide = {
|
programs.neovide = {
|
||||||
enable = true;
|
enable = true;
|
||||||
settings = {
|
settings.fork = true;
|
||||||
fork = true;
|
|
||||||
font = {
|
|
||||||
normal = "IosevkaTerm Nerd Font";
|
|
||||||
size = 12;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue