19 lines
587 B
Lua
19 lines
587 B
Lua
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')
|