Skip to content

Commit

Permalink
fix(nvim): fix moved Nerd Font code points
Browse files Browse the repository at this point in the history
  • Loading branch information
tobyvin committed May 15, 2023
1 parent 4eb27b0 commit 5ff4d28
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 13 deletions.
4 changes: 2 additions & 2 deletions nvim/.config/nvim/lua/plugins/gitsigns.lua
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ local M = {
signs = {
add = { text = "" },
change = { text = "" },
delete = { text = "" },
topdelete = { text = "" },
delete = { text = "󰐊" },
topdelete = { text = "󰐊" },
changedelete = { text = "" },
},
preview_config = { border = "single" },
Expand Down
22 changes: 11 additions & 11 deletions sway/.config/i3status-rust/config.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,17 +21,17 @@ icons = "none"

[icons.overrides]
bat_charging = "BAT+"
music = "\uf886" # nf-mdi-music_note
music_next = "\uf9ac" # nf-mdi-skip_next
music_pause = "\uf8e3" # nf-mdi-pause
music_play = "\uf909" # nf-mdi-play
music_prev = "\uf9ad" # nf-mdi-skip_previous
weather_clouds = "\ufa8f" # nf-mdi-weather_cloudy
weather_default = "\ufa8f" # Cloud symbol as default
weather_rain = "\ufa95" # nf-mdi-weather_pouring
weather_snow = "\ufa97" # nf-mdi-weather_snowy
weather_sun = "\ufa98" # nf-mdi-weather_sunny
weather_thunder = "\ue31d" # nf-weather-thunderstorm
music = "\uf0388" # nf-md-music_note
music_next = "\uf04ad" # nf-md-skip_next
music_pause = "\uf03e4" # nf-md-pause
music_play = "\uf040a" # nf-md-play
music_prev = "\uf04ae" # nf-md-skip_previous
weather_clouds = "\uf0590" # nf-md-weather_cloudy
weather_default = "\uf0590" # nf-md-weather_cloudy
weather_rain = "\uf0596" # nf-md-weather_pouring
weather_snow = "\uf0598" # nf-md-weather_snowy
weather_sun = "\uf0599" # nf-md-weather_sunny
weather_thunder = "\uf067e" # nf-md-weather_lightning_rainy

[[block]]
block = "weather"
Expand Down

0 comments on commit 5ff4d28

Please sign in to comment.