Skip to content

Commit

Permalink
Add icon to statusline spelling module
Browse files Browse the repository at this point in the history
  • Loading branch information
Sqvid committed Jul 20, 2023
1 parent 025c079 commit 88ece07
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions neovim/.config/nvim/init.lua
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ require("lazy").setup {
{"folke/tokyonight.nvim", priority = 1000},
-- Statusline plugin written in pure lua.
"nvim-lualine/lualine.nvim",
-- Adds icons to Neovim plugins
-- Adds icons to Neovim plugins.
{"nvim-tree/nvim-web-devicons", lazy = true},
-- Extension and language-server host for Neovim.
{"neoclide/coc.nvim", branch = "release"},
Expand All @@ -59,7 +59,7 @@ require("tokyonight").setup {
-- Lualine
local function spellStatus()
if vim.wo.spell == true then -- Note that 'spell' is a window option, so: wo
return '[' .. vim.bo.spelllang .. ']'
return "󰓆 " .. vim.bo.spelllang
end
return ''
end
Expand Down

0 comments on commit 88ece07

Please sign in to comment.