Compare commits

..

4 Commits

Author SHA1 Message Date
f9051195ee Removed placeholder .gitkeep files
All checks were successful
bluebuild / Build Custom Image (recipe.yml) (push) Successful in 4m12s
2025-05-16 19:57:55 -04:00
4634867987 Amended color scheme and lazy plugins to be in a more proper format than my initial hack solution., 2025-05-16 18:41:01 -04:00
425f4581c7 Changed menu call to use wofi instead of rofi in menu.lua script 2025-05-16 16:59:27 -04:00
736b4186c5 Added kitty terminal to be launched via uwsm 2025-05-16 15:47:52 -04:00
7 changed files with 35 additions and 30 deletions

View File

@@ -1 +0,0 @@

View File

@@ -24,11 +24,24 @@ vim.g.maplocalleader = "\\"
-- Setup lazy.nvim
require("lazy").setup({
spec = {
{ "LazyVim/LazyVim", import = "lazyvim.plugins"},
-- import your plugins
{ import = "plugins" },
},
-- Configure any other settings here. See the documentation for more details.
-- colorscheme that will be used when installing plugins.
-- automatically check for plugin updates
checker = { enabled = true },
checker = {
enabled = true,
notify = false,
},
performance = {
rtp = {
disabled_plugins = {
"gzip",
"tarPlugin",
"tohtml",
"tutor",
"zipPlugin",
}
}
}
})

View File

@@ -0,0 +1,17 @@
return {
"folke/tokyonight.nvim",
lazy = false,
priority = 1000,
opts = {
style = "night",
on_highlights = function(h1)
h1.LineNrAbove = {
fg = "#6ab8ff",
}
h1.LineNrBelow = {
fg = "#ff6188"
}
end,
on_colors = function() end,
},
}

View File

@@ -1,24 +0,0 @@
return {
{
"LazyVim/LazyVim",
import = "lazyvim.plugins",
opts = {
colorscheme = function()
local tokyonight = require("tokyonight")
tokyonight.setup({
style = "night",
on_highlights = function(hl)
hl.LineNrAbove = {
fg = "#6ab8ff",
}
hl.LineNrBelow = {
fg = "#ff6188",
}
end,
on_colors = function() end,
})
tokyonight.load()
end,
},
},
}

View File

@@ -1,5 +1,5 @@
# terminal.conf
$terminal = kitty
$terminal = uwsm app -- kitty.desktop
# workspace
workspace = special:terminal

View File

@@ -17,7 +17,7 @@ function menu:bring_menu(prompt, options)
options_string = options_string:sub(1, -2)
local command = "echo -e '" .. options_string .. "' | rofi -dmenu -i -p '" .. prompt .. "'"
local command = "echo -e '" .. options_string .. "' | wofi -dmenu -i -p '" .. prompt .. "'"
local f = assert(io.popen(command, "r"))
local s = menu:clean_string(assert(f:read("*a")))
f:close()