diff --git a/alacritty/.config/alacritty/alacritty.toml b/alacritty/.config/alacritty/alacritty.toml index 4dd3aa9..bc1c4d5 100644 --- a/alacritty/.config/alacritty/alacritty.toml +++ b/alacritty/.config/alacritty/alacritty.toml @@ -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 = [ diff --git a/alacritty/.config/alacritty/alacritty.yml b/alacritty/.config/alacritty/alacritty.yml index e660934..75c1989 100644 --- a/alacritty/.config/alacritty/alacritty.yml +++ b/alacritty/.config/alacritty/alacritty.yml @@ -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 diff --git a/awesome/.config/awesome/theme_dark.lua b/awesome/.config/awesome/theme_dark.lua index e73c289..e7284de 100644 --- a/awesome/.config/awesome/theme_dark.lua +++ b/awesome/.config/awesome/theme_dark.lua @@ -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 diff --git a/awesome/.config/awesome/theme_light.lua b/awesome/.config/awesome/theme_light.lua index f1320ba..1e11f3c 100644 --- a/awesome/.config/awesome/theme_light.lua +++ b/awesome/.config/awesome/theme_light.lua @@ -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 diff --git a/foot/.config/foot/foot.ini b/foot/.config/foot/foot.ini index 0a0e107..206b700 100644 --- a/foot/.config/foot/foot.ini +++ b/foot/.config/foot/foot.ini @@ -1,4 +1,4 @@ [main] -font = GoMono Nerd Font:size=11 +font = Fira Code Nerd Font:size=11 include = /usr/share/foot/themes/nord diff --git a/hyprland/.config/waybar/style.css b/hyprland/.config/waybar/style.css index 410b5e2..854825c 100644 --- a/hyprland/.config/waybar/style.css +++ b/hyprland/.config/waybar/style.css @@ -1,5 +1,5 @@ * { - font-family: GoMono Nerd Font; + font-family: Fira Code Nerd Font; font-size: 14; background-color: #263c59; color: #7b899d; diff --git a/nvim/.config/nvim/lua/lupan/remap.lua b/nvim/.config/nvim/lua/lupan/remap.lua index c561f1d..288b579 100644 --- a/nvim/.config/nvim/lua/lupan/remap.lua +++ b/nvim/.config/nvim/lua/lupan/remap.lua @@ -112,10 +112,10 @@ vim.keymap.set("n", "ss", "source ~/.config/nvim/after/plugin/luasn key('n', '', 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) diff --git a/nvim/.config/nvim/lua/plugins/appearance.lua b/nvim/.config/nvim/lua/plugins/appearance.lua index 8f1411b..9039eff 100644 --- a/nvim/.config/nvim/lua/plugins/appearance.lua +++ b/nvim/.config/nvim/lua/plugins/appearance.lua @@ -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 },