Change a lot of neovim stuff
and remove some outdated firefox profiles
This commit is contained in:
parent
c36f93d9c9
commit
a39544b93d
18 changed files with 119 additions and 145 deletions
home/features/neovim/config/lua/my/plugins/themes
|
@ -1,4 +1,4 @@
|
|||
local H = require("my.helpers.theme")
|
||||
local H = require("my.tempest")
|
||||
|
||||
local M = {
|
||||
"uloco/bluloco.nvim",
|
||||
|
@ -12,7 +12,7 @@ function M.config()
|
|||
|
||||
bluloco.setup({
|
||||
transparent = H.theme.opacity.terminal < 1.0,
|
||||
style = H.variant("Bluloco"),
|
||||
style = H.theme_variant("Bluloco"),
|
||||
})
|
||||
|
||||
vim.cmd("colorscheme bluloco")
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
local H = require("my.helpers.theme")
|
||||
local H = require("my.tempest")
|
||||
|
||||
local M = {
|
||||
"catppuccin/nvim",
|
||||
|
@ -9,7 +9,7 @@ local M = {
|
|||
|
||||
function M.config()
|
||||
local catppuccin = require("catppuccin")
|
||||
vim.g.catppuccin_flavour = H.variant("Catppuccin")
|
||||
vim.g.catppuccin_flavour = H.theme_variant("Catppuccin")
|
||||
|
||||
catppuccin.setup({
|
||||
transparent_background = H.theme.transparent.terminal,
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
local H = require("my.helpers.theme")
|
||||
local H = require("my.tempest")
|
||||
|
||||
local M = {
|
||||
"rose-pine/neovim",
|
||||
|
@ -8,7 +8,7 @@ local M = {
|
|||
}
|
||||
|
||||
function M.config()
|
||||
local variant = H.variant("Rosé Pine")
|
||||
local variant = H.theme_variant("Rosé Pine")
|
||||
|
||||
if variant == "dawn" then
|
||||
vim.o.background = "light"
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue