Compare commits

..

No commits in common. "5a5a5380a467605e2020ab9d8c00fce7628eff66" and "c3662d5a5839e22e8b612abfd7ad7385fae4ba1a" have entirely different histories.

3 changed files with 8 additions and 16 deletions

View file

@ -72,11 +72,6 @@ vim.keymap.set("n", "<C-k>", "<C-w><C-k>", { desc = "Move focus to the upper win
-- open neo-tree
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 ]]
require("catppuccin").setup({
flavour = "auto",

View file

@ -2,6 +2,12 @@
{
programs.neovide = {
enable = true;
settings.fork = true;
settings = {
fork = true;
font = {
normal = "IosevkaTerm Nerd Font";
size = 12;
};
};
};
}

View file

@ -10,12 +10,7 @@
nixos-wsl.nixosModules.default
];
environment = {
sessionVariables.LD_LIBRARY_PATH = [ "/run/opengl-driver/lib" ];
systemPackages = [
(pkgs.writeShellScriptBin "neovide" ''/bin/neovide-unwrapped --wsl "$@" &'')
];
};
environment.sessionVariables.LD_LIBRARY_PATH = [ "/run/opengl-driver/lib" ];
wsl = {
enable = true;
@ -28,10 +23,6 @@
name = "code";
src = lib.escapeShellArg "/mnt/c/Users/Leo/AppData/Local/Programs/Microsoft VS Code/bin/code";
}
{
name = "neovide-unwrapped";
src = lib.escapeShellArg "/mnt/c/Program Files/Neovide/neovide.exe";
}
];
wslConf.network = {