nvim: zenbones colorscheme; use Fira Code Nerd Font

This commit is contained in:
Łukasz Pankowski 2024-06-14 22:35:13 +02:00
parent d3b783cb55
commit 55e747eec2
8 changed files with 15 additions and 35 deletions

View File

@ -10,10 +10,10 @@ TERM = "xterm-256color"
size = 10.5
[font.bold]
family = "GoMono Nerd Font"
family = "Fira Code Nerd Font"
[font.normal]
family = "GoMono Nerd Font"
family = "Fira Code Nerd Font"
[keyboard]
bindings = [

View File

@ -296,9 +296,9 @@ colors: *dark
font:
size: 10.5
normal:
family: GoMono Nerd Font
family: Fira Code Nerd Font
bold:
family: GoMono Nerd Font
family: Fira Code Nerd Font
key_bindings:
- key: F6

View File

@ -5,7 +5,7 @@ local dpi = xresources.apply_dpi
local theme = {}
theme.font = "GoMono Nerd Font 10.5"
theme.font = "Fira Code Nerd Font 10.5"
theme.tasklist_disable_icon = true
theme.wibar_height = 40

View File

@ -5,7 +5,7 @@ local dpi = xresources.apply_dpi
local theme = {}
theme.font = "GoMono Nerd Font 10.5"
theme.font = "Fira Code Nerd Font 10.5"
theme.tasklist_disable_icon = true
theme.wibar_height = 40

View File

@ -1,4 +1,4 @@
[main]
font = GoMono Nerd Font:size=11
font = Fira Code Nerd Font:size=11
include = /usr/share/foot/themes/nord

View File

@ -1,5 +1,5 @@
* {
font-family: GoMono Nerd Font;
font-family: Fira Code Nerd Font;
font-size: 14;
background-color: #263c59;
color: #7b899d;

View File

@ -112,10 +112,10 @@ vim.keymap.set("n", "<leader>ss", "<cmd>source ~/.config/nvim/after/plugin/luasn
key('n', '<F6>', function()
if vim.o.background == "dark" then
vim.cmd.colorscheme("dayfox")
vim.cmd.colorscheme("vimbones")
-- vim.o.background = "light"
else
vim.cmd.colorscheme("duskfox")
vim.cmd.colorscheme("nordbones")
-- vim.o.background = "dark"
end
end)

View File

@ -5,32 +5,12 @@ end
return {
-- Colorscheme
{
'rmehri01/onenord.nvim',
"mcchrish/zenbones.nvim",
dependencies = {
"rktjmp/lush.nvim",
},
config = function()
-- vim.cmd.colorscheme("onenord")
end
},
{
"neanias/everforest-nvim",
version = false,
lazy = false,
priority = 1000,
config = function()
-- vim.cmd.colorscheme("everforest")
end,
},
{
"Tsuzat/NeoSolarized.nvim",
lazy = false,
priority = 1000,
config = function()
-- vim.cmd.colorscheme("NeoSolarized")
end
},
{
"EdenEast/nightfox.nvim",
config = function()
vim.cmd.colorscheme("duskfox")
vim.cmd.colorscheme("nordbones")
end
},