Files
lazy_config/init.lua
2024-09-07 17:00:49 -04:00

11 lines
429 B
Lua

-- bootstrap lazy.nvim, LazyVim and your plugins
require("config.lazy")
-- powershell so my shit compiles with zig when i install
vim.o.shell = "C:/Program Files/PowerShell/7/pwsh.exe"
vim.o.shellredir = "2>&1 | Out-File -Encoding UTF8 %s; exit $LastExitCode"
vim.o.shellpipe = "2>&1 | Out-File -Encoding UTF8 %s; exit $LastExitCode"
vim.o.shellquote = ""
vim.o.shellxquote = ""
-- colourscheme
vim.cmd("colorscheme wildcharm")