Files
dotfiles/.config/nvim/init.lua
Kyren223 21107f040b Massive nvim refactor, migrated from nvim-lspconfig to NVIM 0.11 lsp/*
also migrated most LSP clients to nix rather than mason
2025-04-27 14:12:18 +03:00

83 lines
2.0 KiB
Lua

vim.loader.enable()
vim.g.mapleader = ' '
vim.g.maplocalleader = ' '
_G.dd = function(...)
Snacks.debug.inspect(...)
end
_G.bt = function()
Snacks.debug.backtrace()
end
vim.print = _G.dd
require('options')
vim.schedule(function()
require('keymaps')
require('commands')
-- Enable all LSPs
local lsp = require('lsp')
for server, _ in pairs(lsp) do
vim.lsp.enable(server)
end
end)
local lazypath = vim.fn.stdpath('data') .. '/lazy/lazy.nvim'
if not (vim.uv or 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)
require('lazy').setup({ import = 'plugins' }, {
change_detection = { enabled = true, notify = false },
defaults = { lazy = true },
ui = {
icons = {
ft = '',
lazy = '󰂠 ',
loaded = '',
not_loaded = '',
},
},
performance = {
rtp = {
disabled_plugins = {
'2html_plugin',
'tohtml',
'getscript',
'getscriptPlugin',
'gzip',
'logipat',
'netrw',
'netrwPlugin',
'netrwSettings',
'netrwFileHandlers',
'matchit',
'tar',
'tarPlugin',
'rrhelper',
'spellfile_plugin',
'vimball',
'vimballPlugin',
'zip',
'zipPlugin',
'rplugin',
'syntax',
'synmenu',
'optwin',
'compiler',
'bugreport',
'tutor',
'ftplugin', -- WARNING: seems to not break ftplugin, but if there r any issues, try commenting this!
},
},
},
})