1
0
mirror of https://codeberg.org/diginaut/dotfiles.git synced 2026-02-04 08:50:26 +01:00

Load lazy plugins, don't fail on colorscheme

This commit is contained in:
2026-01-17 22:19:06 +01:00
parent 42a0af7cb3
commit 7e9ca8785f

View File

@@ -30,12 +30,14 @@ vim.opt.smartindent = true -- smart indentation
vim.opt.termguicolors = true -- true color support vim.opt.termguicolors = true -- true color support
vim.opt.clipboard = "unnamedplus" -- system clipboard vim.opt.clipboard = "unnamedplus" -- system clipboard
vim.cmd.colorscheme 'kanagawa-dragon' -- vim.cmd.colorscheme 'kanagawa-dragon'
vim.opt.smoothscroll = true vim.opt.smoothscroll = true
-- Setup lazy.nvim -- Setup lazy.nvim
require("lazy").setup({ require("lazy").setup({
spec = { spec = {
-- add LazyVim and import its plugins
{ "LazyVim/LazyVim", import = "lazyvim.plugins" },
-- import your plugins -- import your plugins
{ import = "plugins" }, { import = "plugins" },
}, },