dotfiles/.config/nvim/init.lua
Arthur Khachaturov 628baf3eea
minor updates
2024-09-19 04:25:07 +03:00

29 lines
607 B
Lua

-- Remap leader key to <Space>
-- Load basic configuration
require("config")
-- Init lazy.nvim plugin manager
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',
lazypath,
}
end
vim.opt.rtp:prepend(lazypath)
-- Load plugins
require("lazy").setup("plugins", {
change_detection = {
enabled = false,
notify = false,
},
})
-- Load lsp configuration
require("lsp")