blob: 881ce15f27f9bcac7de7046a440fc9867b718501 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
if vim.g.neovide then
-- spellchecker: disable-next-line
vim.opt.guifont = "FiraCode Nerd Font";
vim.g.neovide_normal_opacity = 0.95;
vim.g.neovide_input_ime = false;
vim.g.neovide_cursor_animate_in_insert_mode = false
vim.g.neovide_input_macos_option_key_is_meta = 'only_left'
end
local lazy_path = vim.fn.stdpath("data") .. "/lazy/lazy.nvim"
if not vim.uv.fs_stat(lazy_path) then
vim.fn.system({
"git",
"clone",
"--filter=blob:none",
"https://github.com/folke/lazy.nvim.git",
"--branch=stable", -- latest stable release
lazy_path,
})
end
vim.opt.rtp:prepend(lazy_path)
require("lazy").setup("plugins")
vim.cmd("colorscheme catppuccin-macchiato")
require("setup").setup()
|