chore: Massive restructure. FIXED TAB BUG . Packer -> Lazy . barbar -> bufferline .

This commit is contained in:
Afonso Franco 2023-01-14 04:05:17 +00:00
parent b2267a0e47
commit 5e1cd7267d
Signed by: afonso
SSH key fingerprint: SHA256:gkVPzsQQJzqi21ntQBV6pXTx4bYI53rFGI4XtvCpwd4
15 changed files with 275 additions and 500 deletions

View file

@ -1,23 +1,3 @@
local install_path = vim.fn.stdpath("data").."/site/pack/packer/start/packer.nvim"
if vim.fn.empty(vim.fn.glob(install_path)) > 0 then
print("Downloading Packer ...")
vim.fn.system({"git", "clone", "https://github.com/wbthomason/packer.nvim", install_path})
vim.api.nvim_command("packadd packer.nvim")
require("plugins.packer")
require("packer").sync()
end
require("core.variables")
require('core.package_manager')
require('impatient')
require('plugins.theme')
Config = {
theme="onedark",
statusline = {
minimal = false
}
}
-- Mapping
require("mappings")