diff --git a/.config/nvim/init.lua b/.config/nvim/init.lua index f97748a..55e4da8 100644 --- a/.config/nvim/init.lua +++ b/.config/nvim/init.lua @@ -49,5 +49,12 @@ vim.api.nvim_set_keymap('n', '', 'j', { noremap = true }) vim.api.nvim_set_keymap('n', '', 'k', { noremap = true }) vim.api.nvim_set_keymap('n', '', 'l', { noremap = true }) -vim.cmd("colorscheme gruvbox") -vim.o.background = "light" -- or "light" for light mode + + +vim.o.background = "dark" -- or "light" for light mode + +require("solarizedDark").setup({ + transparent_mode = true, +}) + +vim.cmd([[colorscheme solarizedDark]]) diff --git a/.config/nvim/lua/config/lazy.lua b/.config/nvim/lua/config/lazy.lua index 1023c9f..64e6981 100644 --- a/.config/nvim/lua/config/lazy.lua +++ b/.config/nvim/lua/config/lazy.lua @@ -25,23 +25,7 @@ vim.g.maplocalleader = "\\" require("lazy").setup({ spec = { -- import your plugins - -- add the Gruvbox plugin - { - "ellisonleao/gruvbox.nvim", - priority = 1000, - config = function() - require("gruvbox").setup({ - contrast = "hard", -- can be "soft", "medium" or "hard" - palette_overrides = { - bright_green = "#a9b665", - }, - overrides = { - SignColumn = { bg = "#1e2021" }, - }, - transparent_mode = true, - }) - end - }, + { "nxstynate/solarizedDark.nvim", priority = 1000 }, }, -- Configure any other settings here. See the documentation for more details. -- colorscheme that will be used when installing plugins. diff --git a/.config/sway/config b/.config/sway/config index 13ca80d..99d289d 100644 --- a/.config/sway/config +++ b/.config/sway/config @@ -303,7 +303,7 @@ output HDMI-A-1 pos 0 402 output DP-4 pos 3440 0 # Wallpaper -output * bg ~/.config/wallpapers/greek-ruins.jpg fill #0D0703 +output * bg ~/.config/wallpapers/foggy-forest.png fill #0D0703 # Enable/Disable extra HDMI screens bindsym $mod+Shift+m output "HDMI-A-1" enable diff --git a/.config/wallpapers/foggy-forest.png b/.config/wallpapers/foggy-forest.png new file mode 100644 index 0000000..e4a61be Binary files /dev/null and b/.config/wallpapers/foggy-forest.png differ diff --git a/.config/waybar/scripts/weather.py b/.config/waybar/scripts/weather.py index 136015d..bfe1c71 100755 --- a/.config/waybar/scripts/weather.py +++ b/.config/waybar/scripts/weather.py @@ -21,8 +21,8 @@ def get_weather_icon(description): "overcast clouds": "☁️", "shower rain": "🌦️", "light rain": "🌧️", - "rain": "🌧️", "moderate rain": "🌧️", + "rain": "🌧️", "thunderstorm": "⛈️", "snow": "❄️", "mist": "🌫️",