36 lines
875 B
Lua
36 lines
875 B
Lua
require("options")
|
|
|
|
local lazypath = vim.fn.stdpath("data") .. "/lazy/lazy.nvim"
|
|
if not vim.loop.fs_stat(lazypath) then
|
|
vim.fn.system({
|
|
"git",
|
|
"clone",
|
|
"--filter=blob:none",
|
|
"https://github.com/folke/lazy.nvim.git",
|
|
"--branch=stable", -- latest stable release
|
|
lazypath,
|
|
})
|
|
end
|
|
vim.opt.rtp:prepend(lazypath)
|
|
|
|
-- Fix for yanking to system clipboard on Windows
|
|
if vim.fn.has("wsl") == 1 then
|
|
vim.g.clipboard = {
|
|
name = "WslClipboard",
|
|
copy = {
|
|
["+"] = "clip.exe",
|
|
["*"] = "clip.exe",
|
|
},
|
|
paste = {
|
|
["+"] = 'powershell.exe -c [Console]::Out.Write($(Get-Clipboard -Raw).tostring().replace("`r", ""))',
|
|
["*"] = 'powershell.exe -c [Console]::Out.Write($(Get-Clipboard -Raw).tostring().replace("`r", ""))',
|
|
},
|
|
cache_enabled = 0,
|
|
}
|
|
end
|
|
|
|
require("lazy").setup("plugins")
|
|
require("keybinds")
|
|
require("autocmds")
|
|
|
|
vim.cmd.colorscheme("catppuccin")
|