generated from LunarVim/Neovim-from-scratch
-
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
2 additions
and
64 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1 @@ | ||
# These are supported funding model platforms | ||
|
||
github: umgbhalla | ||
# patreon: bruh |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,62 +1,3 @@ | ||
--[=====[ | ||
local present, impatient = pcall(require, "impatient") | ||
if present then | ||
impatient.enable_profile() | ||
if not vim.g.vscode then | ||
require("core") | ||
end | ||
local core_modules = { | ||
"core.options", | ||
"core.autocmds", | ||
"core.mappings", | ||
} | ||
for _, module in ipairs(core_modules) do | ||
local ok, err = pcall(require, module) | ||
if not ok then | ||
error("Error loading " .. module .. "\n\n" .. err) | ||
end | ||
end | ||
-- non plugin mappings | ||
require("core.mappings").misc() | ||
-- check if custom init.lua file exists | ||
if vim.fn.filereadable(vim.fn.stdpath "config" .. "/lua/custom/init.lua") == 1 then | ||
-- try to call custom init, if not successful, show error | ||
local ok, err = pcall(require, "custom") | ||
if not ok then | ||
vim.notify("Error loading custom/init.lua\n\n" .. err) | ||
end | ||
return | ||
end | ||
--]=====] | ||
|
||
require("user.alpha") | ||
require("user.autocommands") | ||
require("user.autopairs") | ||
require("user.barbar") | ||
require("user.cmpconf") | ||
require("user.colorscheme") | ||
require("user.comment") | ||
require("user.cool") | ||
require("user.diaglist") | ||
require("user.gitsignsconf") | ||
require("user.impatient") | ||
require("user.indentline") | ||
require("user.keymaps") | ||
require("user.lsp") | ||
require("user.lsp.settings.rust_tools") | ||
require("user.lualineconf") | ||
require("user.notify") | ||
require("user.nvim-treeconf") | ||
require("user.options") | ||
require("user.plugins") | ||
require("user.presenceconf") | ||
require("user.project") | ||
require("user.sidebar") | ||
require("user.surround") | ||
require("user.telescopeconf") | ||
require("user.toggletermconf") | ||
require("user.treesitter") | ||
require("user.whichkey") |