feat: Add user customization and refactor for readability
- Add user customization via automatically detected user.lua file - Reorganize config options into separate files - Reorganize plugin loaders into separate files
This commit is contained in:
@@ -1 +1,4 @@
|
|||||||
dev/
|
dev/
|
||||||
|
user/
|
||||||
|
dev.lua
|
||||||
|
user.lua
|
||||||
|
|||||||
@@ -0,0 +1,66 @@
|
|||||||
|
-- ╭─────────────────────────────────────────────────────────╮
|
||||||
|
-- │ COLORS │
|
||||||
|
-- ╰─────────────────────────────────────────────────────────╯
|
||||||
|
-- Load WezTerm module
|
||||||
|
local wezterm = WEZTERM
|
||||||
|
|
||||||
|
local types = require("types")
|
||||||
|
|
||||||
|
local cur_hour = wezterm.time.now():format("%H")
|
||||||
|
|
||||||
|
local hour_angle = require("funcs").get_hour_angle(cur_hour)
|
||||||
|
|
||||||
|
local opts = {
|
||||||
|
-- Color Scheme
|
||||||
|
color_scheme = "Catppuccin Mocha",
|
||||||
|
-- Tab Bar Colors
|
||||||
|
colors = {
|
||||||
|
-- Compose Cursor
|
||||||
|
compose_cursor = "#a5e3a0",
|
||||||
|
-- Visual Bell
|
||||||
|
visual_bell = "#E78284",
|
||||||
|
},
|
||||||
|
-- Command Palette Colors
|
||||||
|
command_palette_bg_color = "#232634", -- Command Palette Background
|
||||||
|
command_palette_fg_color = "#C6D0F5", -- Command Palette Foreground
|
||||||
|
-- Titlebar and Frame Colors
|
||||||
|
window_frame = {
|
||||||
|
active_titlebar_bg = "#232634",
|
||||||
|
inactive_titlebar_bg = "#303446",
|
||||||
|
inactive_titlebar_fg = "#484D69",
|
||||||
|
active_titlebar_fg = "#C6D0F5",
|
||||||
|
inactive_titlebar_border_bottom = "#3b3052",
|
||||||
|
active_titlebar_border_bottom = "#3b3052",
|
||||||
|
button_fg = "#C6D0F5",
|
||||||
|
button_bg = "#3b3052",
|
||||||
|
button_hover_fg = "#C6D0F5",
|
||||||
|
button_hover_bg = "#2b2042",
|
||||||
|
font = wezterm.font(types.win_font),
|
||||||
|
-- Tab Font Size
|
||||||
|
font_size = 10,
|
||||||
|
},
|
||||||
|
-- Inactive Pane Filter
|
||||||
|
inactive_pane_hsb = {
|
||||||
|
saturation = 1.0,
|
||||||
|
brightness = 0.5,
|
||||||
|
},
|
||||||
|
window_background_gradient = {
|
||||||
|
orientation = {
|
||||||
|
Linear = {
|
||||||
|
angle = hour_angle,
|
||||||
|
},
|
||||||
|
},
|
||||||
|
colors = {
|
||||||
|
-- "#303446",
|
||||||
|
"#24273a",
|
||||||
|
"#1e1e2e",
|
||||||
|
},
|
||||||
|
interpolation = "CatmullRom",
|
||||||
|
blend = "Oklab",
|
||||||
|
noise = 128,
|
||||||
|
segment_size = 7,
|
||||||
|
segment_smoothness = 1.0,
|
||||||
|
},
|
||||||
|
}
|
||||||
|
|
||||||
|
return opts
|
||||||
@@ -0,0 +1,39 @@
|
|||||||
|
-- ╭─────────────────────────────────────────────────────────╮
|
||||||
|
-- │ FONT │
|
||||||
|
-- ╰─────────────────────────────────────────────────────────╯
|
||||||
|
|
||||||
|
-- Load WezTerm module
|
||||||
|
local wezterm = WEZTERM
|
||||||
|
|
||||||
|
local types = require("types")
|
||||||
|
|
||||||
|
local opts = {
|
||||||
|
-- Terminal Font Size
|
||||||
|
font_size = 12.0,
|
||||||
|
-- Terminal Font
|
||||||
|
font = wezterm.font_with_fallback(types.rootiest_font),
|
||||||
|
-- Cell Sizing
|
||||||
|
cell_width = 1.0,
|
||||||
|
line_height = 1.0,
|
||||||
|
-- ANSI Colors
|
||||||
|
bold_brightens_ansi_colors = "BrightAndBold",
|
||||||
|
-- FreeType Load Flags
|
||||||
|
freetype_load_flags = "DEFAULT",
|
||||||
|
-- FreeType Load Target
|
||||||
|
freetype_load_target = "Normal",
|
||||||
|
-- Default Cursor Shape
|
||||||
|
default_cursor_style = "BlinkingBar",
|
||||||
|
-- Set the initial size
|
||||||
|
initial_cols = 180,
|
||||||
|
initial_rows = 38,
|
||||||
|
|
||||||
|
tab_max_width = 60,
|
||||||
|
tab_bar_at_bottom = false,
|
||||||
|
|
||||||
|
unicode_version = 14,
|
||||||
|
|
||||||
|
-- Resize by cell
|
||||||
|
use_resize_increments = true,
|
||||||
|
}
|
||||||
|
|
||||||
|
return opts
|
||||||
+24
-141
@@ -1,136 +1,13 @@
|
|||||||
-- ╭─────────────────────────────────────────────────────────╮
|
-- ╭─────────────────────────────────────────────────────────╮
|
||||||
-- │ CONFIG │
|
-- │ KEYMAPS │
|
||||||
-- ╰─────────────────────────────────────────────────────────╯
|
-- ╰─────────────────────────────────────────────────────────╯
|
||||||
|
|
||||||
local wezterm = WEZTERM
|
local wezterm = WEZTERM
|
||||||
local act = wezterm.action
|
local act = wezterm.action
|
||||||
-- local gpus = wezterm.gui.enumerate_gpus()
|
|
||||||
local types = require("types")
|
|
||||||
|
|
||||||
local cur_hour = wezterm.time.now():format("%H")
|
local resurrect = wezterm.plugin.require("https://github.com/MLFlexer/resurrect.wezterm")
|
||||||
|
|
||||||
local hour_angle = require("funcs").get_hour_angle(cur_hour)
|
|
||||||
|
|
||||||
local opts = {
|
local opts = {
|
||||||
-- Color Scheme
|
|
||||||
color_scheme = "Catppuccin Mocha",
|
|
||||||
-- Tab Bar Colors
|
|
||||||
colors = {
|
|
||||||
-- Compose Cursor
|
|
||||||
compose_cursor = "#a5e3a0",
|
|
||||||
-- Visual Bell
|
|
||||||
visual_bell = "#E78284",
|
|
||||||
},
|
|
||||||
-- Command Palette Colors
|
|
||||||
command_palette_bg_color = "#232634", -- Command Palette Background
|
|
||||||
command_palette_fg_color = "#C6D0F5", -- Command Palette Foreground
|
|
||||||
-- Titlebar and Frame Colors
|
|
||||||
window_frame = {
|
|
||||||
active_titlebar_bg = "#232634",
|
|
||||||
inactive_titlebar_bg = "#303446",
|
|
||||||
inactive_titlebar_fg = "#484D69",
|
|
||||||
active_titlebar_fg = "#C6D0F5",
|
|
||||||
inactive_titlebar_border_bottom = "#3b3052",
|
|
||||||
active_titlebar_border_bottom = "#3b3052",
|
|
||||||
button_fg = "#C6D0F5",
|
|
||||||
button_bg = "#3b3052",
|
|
||||||
button_hover_fg = "#C6D0F5",
|
|
||||||
button_hover_bg = "#2b2042",
|
|
||||||
font = wezterm.font(types.win_font),
|
|
||||||
-- Tab Font Size
|
|
||||||
font_size = 10,
|
|
||||||
},
|
|
||||||
-- Inactive Pane Filter
|
|
||||||
inactive_pane_hsb = {
|
|
||||||
saturation = 1.0,
|
|
||||||
brightness = 0.5,
|
|
||||||
},
|
|
||||||
window_background_gradient = {
|
|
||||||
orientation = {
|
|
||||||
Linear = {
|
|
||||||
angle = hour_angle,
|
|
||||||
},
|
|
||||||
},
|
|
||||||
colors = {
|
|
||||||
-- "#303446",
|
|
||||||
"#24273a",
|
|
||||||
"#1e1e2e",
|
|
||||||
},
|
|
||||||
interpolation = "CatmullRom",
|
|
||||||
blend = "Oklab",
|
|
||||||
noise = 128,
|
|
||||||
segment_size = 7,
|
|
||||||
segment_smoothness = 1.0,
|
|
||||||
},
|
|
||||||
-- Terminal Font Size
|
|
||||||
font_size = 12.0,
|
|
||||||
-- Terminal Font
|
|
||||||
font = wezterm.font_with_fallback(types.rootiest_font),
|
|
||||||
-- Cell Sizing
|
|
||||||
cell_width = 1.0,
|
|
||||||
line_height = 1.0,
|
|
||||||
-- ANSI Colors
|
|
||||||
bold_brightens_ansi_colors = "BrightAndBold",
|
|
||||||
-- FreeType Load Flags
|
|
||||||
freetype_load_flags = "DEFAULT",
|
|
||||||
-- FreeType Load Target
|
|
||||||
freetype_load_target = "Normal",
|
|
||||||
-- Default Cursor Shape
|
|
||||||
default_cursor_style = "BlinkingBar",
|
|
||||||
-- Set the initial size
|
|
||||||
initial_cols = 180,
|
|
||||||
initial_rows = 38,
|
|
||||||
|
|
||||||
tab_max_width = 60,
|
|
||||||
tab_bar_at_bottom = false,
|
|
||||||
|
|
||||||
unicode_version = 14,
|
|
||||||
|
|
||||||
-- Resize by cell
|
|
||||||
use_resize_increments = true,
|
|
||||||
|
|
||||||
-- Use Retro tab bar
|
|
||||||
use_fancy_tab_bar = false,
|
|
||||||
|
|
||||||
-- Set the window padding
|
|
||||||
window_padding = {
|
|
||||||
left = "0%",
|
|
||||||
right = "0%",
|
|
||||||
top = "0%",
|
|
||||||
bottom = "0%",
|
|
||||||
},
|
|
||||||
|
|
||||||
-- Set the animation framerate
|
|
||||||
animation_fps = 120,
|
|
||||||
|
|
||||||
-- Window Decorations
|
|
||||||
window_decorations = "TITLE | RESIZE",
|
|
||||||
|
|
||||||
-- Visual Bell
|
|
||||||
visual_bell = {
|
|
||||||
fade_in_duration_ms = 75,
|
|
||||||
fade_out_duration_ms = 75,
|
|
||||||
target = "CursorColor",
|
|
||||||
},
|
|
||||||
|
|
||||||
-- Audible Bell
|
|
||||||
audible_bell = "SystemBeep",
|
|
||||||
|
|
||||||
-- Terminal Variable
|
|
||||||
term = "wezterm",
|
|
||||||
|
|
||||||
--Honor kitty protocol inputs
|
|
||||||
enable_kitty_keyboard = true,
|
|
||||||
|
|
||||||
-- Rendering
|
|
||||||
front_end = "WebGpu",
|
|
||||||
-- webgpu_power_preference = "HighPerformance",
|
|
||||||
-- webgpu_power_preference = "LowPower",
|
|
||||||
-- webgpu_preferred_adapter = gpus[1],
|
|
||||||
-- front_end = "OpenGL",
|
|
||||||
|
|
||||||
-- Scrollback Lines
|
|
||||||
scrollback_lines = 20000,
|
|
||||||
|
|
||||||
-- ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ Leader key ━━━━━━━━━━━━━━━━━━━━━━━━━━
|
-- ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ Leader key ━━━━━━━━━━━━━━━━━━━━━━━━━━
|
||||||
leader = { key = " ", mods = "CTRL", timeout_milliseconds = 1500 },
|
leader = { key = " ", mods = "CTRL", timeout_milliseconds = 1500 },
|
||||||
-- ━━━━━━━━━━━━━━━━━━━━━━━━━ Global Key Mappings ━━━━━━━━━━━━━━━━━━━━━
|
-- ━━━━━━━━━━━━━━━━━━━━━━━━━ Global Key Mappings ━━━━━━━━━━━━━━━━━━━━━
|
||||||
@@ -243,13 +120,25 @@ local opts = {
|
|||||||
end),
|
end),
|
||||||
}),
|
}),
|
||||||
},
|
},
|
||||||
|
{ -- Save [w]orkspace State
|
||||||
|
key = "w",
|
||||||
|
mods = "ALT",
|
||||||
|
action = wezterm.action_callback(function()
|
||||||
|
resurrect.save_state(resurrect.workspace_state.get_workspace_state())
|
||||||
|
end),
|
||||||
|
},
|
||||||
|
{ -- Save [W]indow State
|
||||||
|
key = "W",
|
||||||
|
mods = "ALT",
|
||||||
|
action = resurrect.window_state.save_window_action(),
|
||||||
|
},
|
||||||
{ -- [S]ave Session
|
{ -- [S]ave Session
|
||||||
key = "s",
|
key = "s",
|
||||||
mods = "ALT",
|
mods = "ALT",
|
||||||
action = act.Multiple({
|
action = act.Multiple({
|
||||||
wezterm.action_callback(function(_, _)
|
wezterm.action_callback(function(_, _)
|
||||||
RESURRECT.save_state(RESURRECT.workspace_state.get_workspace_state())
|
resurrect.save_state(resurrect.workspace_state.get_workspace_state())
|
||||||
RESURRECT.window_state.save_window_action()
|
resurrect.window_state.save_window_action()
|
||||||
end),
|
end),
|
||||||
}),
|
}),
|
||||||
},
|
},
|
||||||
@@ -257,24 +146,24 @@ local opts = {
|
|||||||
key = "r",
|
key = "r",
|
||||||
mods = "ALT",
|
mods = "ALT",
|
||||||
action = wezterm.action_callback(function(win, pane)
|
action = wezterm.action_callback(function(win, pane)
|
||||||
RESURRECT.fuzzy_load(win, pane, function(id)
|
resurrect.fuzzy_load(win, pane, function(id)
|
||||||
local type = string.match(id, "^([^/]+)") -- match before '/'
|
local type = string.match(id, "^([^/]+)") -- match before '/'
|
||||||
id = string.match(id, "([^/]+)$") -- match after '/'
|
id = string.match(id, "([^/]+)$") -- match after '/'
|
||||||
id = string.match(id, "(.+)%..+$") -- remove file extension
|
id = string.match(id, "(.+)%..+$") -- remove file extension
|
||||||
local state
|
local state
|
||||||
if type == "workspace" then
|
if type == "workspace" then
|
||||||
state = RESURRECT.load_state(id, "workspace")
|
state = resurrect.load_state(id, "workspace")
|
||||||
RESURRECT.workspace_state.restore_workspace(state, {
|
resurrect.workspace_state.restore_workspace(state, {
|
||||||
relative = true,
|
relative = true,
|
||||||
restore_text = true,
|
restore_text = true,
|
||||||
on_pane_restore = RESURRECT.tab_state.default_on_pane_restore,
|
on_pane_restore = resurrect.tab_state.default_on_pane_restore,
|
||||||
})
|
})
|
||||||
elseif type == "window" then
|
elseif type == "window" then
|
||||||
state = RESURRECT.load_state(id, "window")
|
state = resurrect.load_state(id, "window")
|
||||||
RESURRECT.window_state.restore_window(pane:window(), state, {
|
resurrect.window_state.restore_window(pane:window(), state, {
|
||||||
relative = true,
|
relative = true,
|
||||||
restore_text = true,
|
restore_text = true,
|
||||||
on_pane_restore = RESURRECT.tab_state.default_on_pane_restore,
|
on_pane_restore = resurrect.tab_state.default_on_pane_restore,
|
||||||
-- uncomment this line to use active tab when restoring
|
-- uncomment this line to use active tab when restoring
|
||||||
-- tab = win:active_tab(),
|
-- tab = win:active_tab(),
|
||||||
})
|
})
|
||||||
@@ -347,10 +236,4 @@ local opts = {
|
|||||||
},
|
},
|
||||||
}
|
}
|
||||||
|
|
||||||
-- merge the table in os_opts.lua into opts
|
|
||||||
local os_opts = require("platform")
|
|
||||||
for k, v in pairs(os_opts) do
|
|
||||||
opts[k] = v
|
|
||||||
end
|
|
||||||
|
|
||||||
return opts
|
return opts
|
||||||
@@ -9,26 +9,30 @@ local wezterm = WEZTERM
|
|||||||
local opts = {}
|
local opts = {}
|
||||||
|
|
||||||
-- -- Get the OS string
|
-- -- Get the OS string
|
||||||
-- local os_string = wezterm.target_triple:lower()
|
local os_string = wezterm.target_triple:lower()
|
||||||
-- local myos = ""
|
local myos = ""
|
||||||
--
|
--
|
||||||
-- -- Determine the OS
|
-- -- Determine the OS
|
||||||
-- if os_string:find("windows") then
|
if os_string:find("windows") then
|
||||||
-- myos = "win"
|
myos = "win"
|
||||||
-- else
|
else
|
||||||
-- if os_string:find("darwin") then
|
if os_string:find("darwin") then
|
||||||
-- myos = "mac"
|
myos = "mac"
|
||||||
-- else
|
else
|
||||||
-- myos = "linux"
|
myos = "linux"
|
||||||
-- end
|
end
|
||||||
-- end
|
end
|
||||||
--
|
|
||||||
-- -- Set OS-specific options
|
-- Set OS-specific options
|
||||||
-- if myos == "win" then
|
if myos == "win" then
|
||||||
-- opts.default_prog = { "pwsh.exe" }
|
opts.default_prog = { "pwsh.exe" }
|
||||||
-- opts.window_background_opacity = 0
|
elseif myos == "mac" then
|
||||||
-- opts.win32_system_backdrop = "Mica"
|
opts.default_prog = { "zsh" }
|
||||||
-- end
|
else
|
||||||
|
opts.default_prog = { "fish" }
|
||||||
|
end
|
||||||
|
|
||||||
|
MYOS = myos
|
||||||
|
|
||||||
-- Return the opts table
|
-- Return the opts table
|
||||||
return opts
|
return opts
|
||||||
@@ -0,0 +1,50 @@
|
|||||||
|
-- ╭─────────────────────────────────────────────────────────╮
|
||||||
|
-- │ WINDOW │
|
||||||
|
-- ╰─────────────────────────────────────────────────────────╯
|
||||||
|
|
||||||
|
local opts = {
|
||||||
|
-- Use Retro tab bar
|
||||||
|
use_fancy_tab_bar = false,
|
||||||
|
|
||||||
|
-- Set the window padding
|
||||||
|
window_padding = {
|
||||||
|
left = "0%",
|
||||||
|
right = "0%",
|
||||||
|
top = "0%",
|
||||||
|
bottom = "0%",
|
||||||
|
},
|
||||||
|
|
||||||
|
-- Set the animation framerate
|
||||||
|
animation_fps = 120,
|
||||||
|
|
||||||
|
-- Window Decorations
|
||||||
|
window_decorations = "TITLE | RESIZE",
|
||||||
|
|
||||||
|
-- Visual Bell
|
||||||
|
visual_bell = {
|
||||||
|
fade_in_duration_ms = 75,
|
||||||
|
fade_out_duration_ms = 75,
|
||||||
|
target = "CursorColor",
|
||||||
|
},
|
||||||
|
|
||||||
|
-- Audible Bell
|
||||||
|
audible_bell = "SystemBeep",
|
||||||
|
|
||||||
|
-- Terminal Variable
|
||||||
|
term = "wezterm",
|
||||||
|
|
||||||
|
--Honor kitty protocol inputs
|
||||||
|
enable_kitty_keyboard = true,
|
||||||
|
|
||||||
|
-- Rendering
|
||||||
|
front_end = "WebGpu",
|
||||||
|
-- webgpu_power_preference = "HighPerformance",
|
||||||
|
-- webgpu_power_preference = "LowPower",
|
||||||
|
-- webgpu_preferred_adapter = gpus[1],
|
||||||
|
-- front_end = "OpenGL",
|
||||||
|
|
||||||
|
-- Scrollback Lines
|
||||||
|
scrollback_lines = 20000,
|
||||||
|
}
|
||||||
|
|
||||||
|
return opts
|
||||||
@@ -0,0 +1,34 @@
|
|||||||
|
-- ╭─────────────────────────────────────────────────────────╮
|
||||||
|
-- │ CONFIG │
|
||||||
|
-- ╰─────────────────────────────────────────────────────────╯
|
||||||
|
|
||||||
|
local opts = {}
|
||||||
|
|
||||||
|
-- Function to merge tables into opts
|
||||||
|
local function merge_into_opts(mod)
|
||||||
|
for k, v in pairs(require("config." .. mod)) do
|
||||||
|
opts[k] = v
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
-- List of config modules to merge
|
||||||
|
local modules = {
|
||||||
|
"colors",
|
||||||
|
"font",
|
||||||
|
"keys",
|
||||||
|
"window",
|
||||||
|
"platform",
|
||||||
|
}
|
||||||
|
|
||||||
|
-- If USERCONFIG is true, merge userconfig
|
||||||
|
if USERCONFIG then
|
||||||
|
merge_into_opts("user")
|
||||||
|
end
|
||||||
|
|
||||||
|
-- Merge all modules into opts
|
||||||
|
for _, mod in ipairs(modules) do
|
||||||
|
merge_into_opts(mod)
|
||||||
|
end
|
||||||
|
|
||||||
|
-- Return config options
|
||||||
|
return opts
|
||||||
@@ -7,6 +7,30 @@ local M = {}
|
|||||||
-- Load Resurrect plugin
|
-- Load Resurrect plugin
|
||||||
RESURRECT = WEZTERM.plugin.require("https://github.com/MLFlexer/resurrect.wezterm")
|
RESURRECT = WEZTERM.plugin.require("https://github.com/MLFlexer/resurrect.wezterm")
|
||||||
|
|
||||||
|
-- Set the keyfile
|
||||||
|
local key = WEZTERM.home_dir .. "/.config/.private/key.txt"
|
||||||
|
|
||||||
|
---@function Check if a file exists
|
||||||
|
---@param file string The file path to check
|
||||||
|
---@return boolean exists True if the file exists, false otherwise
|
||||||
|
local function file_exists(file)
|
||||||
|
local f = io.open(file, "r")
|
||||||
|
if f then
|
||||||
|
f:close()
|
||||||
|
return true
|
||||||
|
end
|
||||||
|
return false
|
||||||
|
end
|
||||||
|
|
||||||
|
if file_exists(key) then
|
||||||
|
RESURRECT.set_encryption({
|
||||||
|
enable = true,
|
||||||
|
method = "age", -- "age" is the default encryption method, but you can also specify "rage" or "gpg"
|
||||||
|
private_key = key, -- if using "gpg", you can omit this
|
||||||
|
public_key = "age1q80h5jsp9d48kggf9kra82xkgyaqdnehqenm003ftapem9re7ytqp9hr6h",
|
||||||
|
})
|
||||||
|
end
|
||||||
|
|
||||||
-- Set the periodic save interval
|
-- Set the periodic save interval
|
||||||
RESURRECT.periodic_save({ interval_seconds = 60, save_workspaces = true, save_windows = true })
|
RESURRECT.periodic_save({ interval_seconds = 60, save_workspaces = true, save_windows = true })
|
||||||
|
|
||||||
|
|||||||
@@ -0,0 +1,17 @@
|
|||||||
|
-- ╭─────────────────────────────────────────────────────────╮
|
||||||
|
-- │ PLUGINS │
|
||||||
|
-- ╰─────────────────────────────────────────────────────────╯
|
||||||
|
|
||||||
|
-- List of plugins to load
|
||||||
|
local plugins = {
|
||||||
|
"battery",
|
||||||
|
"hyperlinks",
|
||||||
|
"resurrect",
|
||||||
|
"smart_splits",
|
||||||
|
"tabline",
|
||||||
|
}
|
||||||
|
|
||||||
|
-- Load all plugins
|
||||||
|
for _, plugin in ipairs(plugins) do
|
||||||
|
require("plugins." .. plugin)
|
||||||
|
end
|
||||||
+7
-8
@@ -16,22 +16,21 @@ WEZTERM = require("wezterm")
|
|||||||
CONFIG = WEZTERM.config_builder()
|
CONFIG = WEZTERM.config_builder()
|
||||||
|
|
||||||
-- Load Options
|
-- Load Options
|
||||||
local configs = require("configs")
|
local opts = require("opts")
|
||||||
|
|
||||||
-- Apply config
|
-- Apply config
|
||||||
for k, v in pairs(configs) do
|
for k, v in pairs(opts) do
|
||||||
CONFIG[k] = v
|
CONFIG[k] = v
|
||||||
end
|
end
|
||||||
|
|
||||||
-- Check for dev-modes
|
-- Check for dev-modes
|
||||||
DEVMODE = pcall(require, "dev")
|
DEVMODE = pcall(require, "dev")
|
||||||
|
|
||||||
-- Load Plugins
|
-- Check for user-configs
|
||||||
require("plugins.battery")
|
USERCONFIG = pcall(require, "user")
|
||||||
require("plugins.hyperlinks")
|
|
||||||
require("plugins.resurrect")
|
-- Load plugins
|
||||||
require("plugins.smart_splits")
|
require("plugs")
|
||||||
require("plugins.tabline")
|
|
||||||
|
|
||||||
--------- Update Plugins ----------
|
--------- Update Plugins ----------
|
||||||
---Running this may cause slowdowns
|
---Running this may cause slowdowns
|
||||||
|
|||||||
Reference in New Issue
Block a user