This commit is contained in:
2026-07-26 18:42:56 +02:00
commit 2ac5bfdb97
7 changed files with 297 additions and 0 deletions
+18
View File
@@ -0,0 +1,18 @@
vim.opt.rtp:prepend(vim.fn.stdpath("config"))
local opts = { noremap = true, silent = true }
vim.pack.add({
{ src = "https://github.com/neovim/nvim-lspconfig" },
{ src = "https://github.com/goolord/alpha-nvim" },
{ src = "https://github.com/stevearc/oil.nvim" },
{ src = "https://github.com/ibhagwan/fzf-lua" },
{ src = "https://github.com/nvim-lualine/lualine.nvim" },
{ src = "https://github.com/nvim-mini/mini.nvim" },
{ src = "https://github.com/rafamadriz/friendly-snippets" },
})
require('lspconf')
require('settings')
require('lualineconf')
require('mini')
require('ui')