1
0
Fork 0

switch to using lazy nvim

This commit is contained in:
Anton Livaja 2025-03-04 12:05:28 -08:00
parent 7eced22aca
commit 3f53f9071c
Signed by: anton
GPG Key ID: 44A86CFF1FDF0E85
7 changed files with 69 additions and 1 deletions

View File

@ -0,0 +1 @@
require("config.lazy")

View File

@ -1 +0,0 @@
colorscheme lackluster-hack

View File

@ -0,0 +1,6 @@
{
"editorconfig-vim": { "branch": "master", "commit": "91bd0b0a2c6a72a110ab9feae335e1224480c233" },
"lazy.nvim": { "branch": "main", "commit": "6c3bda4aca61a13a9c63f1c1d1b16b9d3be90d7a" },
"nvim-treesitter": { "branch": "master", "commit": "2b0760dca2354fecf48ea35fdf1d753a232e3de2" },
"tokyonight.nvim": { "branch": "main", "commit": "057ef5d260c1931f1dffd0f052c685dcd14100a3" }
}

View File

@ -0,0 +1,35 @@
-- Bootstrap lazy.nvim
local lazypath = vim.fn.stdpath("data") .. "/lazy/lazy.nvim"
if not (vim.uv or vim.loop).fs_stat(lazypath) then
local lazyrepo = "https://github.com/folke/lazy.nvim.git"
local out = vim.fn.system({ "git", "clone", "--filter=blob:none", "--branch=stable", lazyrepo, lazypath })
if vim.v.shell_error ~= 0 then
vim.api.nvim_echo({
{ "Failed to clone lazy.nvim:\n", "ErrorMsg" },
{ out, "WarningMsg" },
{ "\nPress any key to exit..." },
}, true, {})
vim.fn.getchar()
os.exit(1)
end
end
vim.opt.rtp:prepend(lazypath)
-- Make sure to setup `mapleader` and `maplocalleader` before
-- loading lazy.nvim so that mappings are correct.
-- This is also a good place to setup other settings (vim.opt)
vim.g.mapleader = " "
vim.g.maplocalleader = "\\"
-- Setup lazy.nvim
require("lazy").setup({
spec = {
-- import your plugins
{ import = "plugins" },
},
-- Configure any other settings here. See the documentation for more details.
-- colorscheme that will be used when installing plugins.
install = { colorscheme = { "habamax" } },
-- automatically check for plugin updates
checker = { enabled = true },
})

View File

@ -0,0 +1,6 @@
return {
"editorconfig/editorconfig-vim",
event = "BufReadPre",
lazy = false -- Load immediately to ensure `.editorconfig` rules apply
}

View File

@ -0,0 +1,8 @@
return {
"folke/tokyonight.nvim",
lazy = false, -- Load at startup
priority = 1000, -- Ensure it loads before everything else
config = function()
vim.cmd("colorscheme tokyonight") -- Apply the theme
end
}

View File

@ -0,0 +1,13 @@
return {
"nvim-treesitter/nvim-treesitter",
build = ":TSUpdate",
event = { "BufReadPost", "BufNewFile" },
config = function()
require("nvim-treesitter.configs").setup({
ensure_installed = { "lua", "vim", "bash", "python", "javascript" }, -- Add needed languages
highlight = { enable = true },
indent = { enable = true },
})
end
}