Move configuration to core
Test Neovim config on push / build (ubuntu-20.04) (push) Failing after 2m58s

This commit is contained in:
Nina Chlóe Kassandra Reiß
2026-06-18 20:36:36 +02:00
parent 5f052bf9ae
commit 4d1d8e3fe7
2 changed files with 24 additions and 22 deletions
+2 -22
View File
@@ -1,22 +1,2 @@
-- Basic setup configuration -- Just load core on non nixos systems
require("vanilla") require("core")
vim.cmd("source ~/.config/nvim/viml/automacro.vim")
-- Lazy plugin setup
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", -- latest stable release
lazypath,
})
end
vim.opt.rtp:prepend(lazypath)
require("lazy").setup("plugins")
require("plugconfig")
+22
View File
@@ -0,0 +1,22 @@
-- Basic setup configuration
require("vanilla")
vim.cmd("source ~/.config/nvim/viml/automacro.vim")
-- Lazy plugin setup
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", -- latest stable release
lazypath,
})
end
vim.opt.rtp:prepend(lazypath)
require("lazy").setup("plugins")
require("plugconfig")