19 lines
681 B
Lua
19 lines
681 B
Lua
-- bootstrap lazy.nvim, LazyVim and your plugins
|
|
require("config.lazy")
|
|
local os_info = require("os_info")
|
|
|
|
-- powershell so my shit compiles with zig when i install
|
|
if os_info.is_windows then
|
|
vim.o.shell = "pwsh"
|
|
vim.o.shellcmdflag =
|
|
"-NoLogo -ExecutionPolicy RemoteSigned -Command [Console]::InputEncoding=[Console]::OutputEncoding=[System.Text.Encoding]::UTF8;"
|
|
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 = ""
|
|
end
|
|
|
|
-- colourscheme
|
|
vim.cmd("colorscheme wildcharm")
|
|
vim.api.nvim_set_hl(0, "Normal", { bg = "#18131e" })
|