🎨 ux(nvim): added neovim icon on the lualine mode component

This commit is contained in:
Sergio Laín 2023-12-03 18:54:26 +01:00
parent 115c91249b
commit 9d2f3ce8cf
No known key found for this signature in database
GPG key ID: 14C9B8080681777B
3 changed files with 6 additions and 1 deletions

View file

@ -119,6 +119,7 @@
"trouble.nvim": { "branch": "main", "commit": "f1168feada93c0154ede4d1fe9183bf69bac54ea" }, "trouble.nvim": { "branch": "main", "commit": "f1168feada93c0154ede4d1fe9183bf69bac54ea" },
"ts-node-action": { "branch": "master", "commit": "e37eb458378de5d994df459a53711b2546abef0f" }, "ts-node-action": { "branch": "master", "commit": "e37eb458378de5d994df459a53711b2546abef0f" },
"tsc.nvim": { "branch": "main", "commit": "a8f26d3d6a0faf533afb840816a6d9ac6a1fcbea" }, "tsc.nvim": { "branch": "main", "commit": "a8f26d3d6a0faf533afb840816a6d9ac6a1fcbea" },
"twilight.nvim": { "branch": "main", "commit": "8b7b50c0cb2dc781b2f4262a5ddd57571556d1e4" },
"venv-selector.nvim": { "branch": "main", "commit": "61bc33b040ecdb93ec5788104ff41808cd5e511a" }, "venv-selector.nvim": { "branch": "main", "commit": "61bc33b040ecdb93ec5788104ff41808cd5e511a" },
"vim-floaterm": { "branch": "master", "commit": "3f01a623376957437f9376327637491b74719e38" }, "vim-floaterm": { "branch": "master", "commit": "3f01a623376957437f9376327637491b74719e38" },
"vim-illuminate": { "branch": "master", "commit": "3bd2ab64b5d63b29e05691e624927e5ebbf0fb86" }, "vim-illuminate": { "branch": "master", "commit": "3bd2ab64b5d63b29e05691e624927e5ebbf0fb86" },
@ -126,5 +127,6 @@
"vim-wakatime": { "branch": "master", "commit": "87c6861ea81700ec4a6a27c81413cf07cb2c883c" }, "vim-wakatime": { "branch": "master", "commit": "87c6861ea81700ec4a6a27c81413cf07cb2c883c" },
"which-key.nvim": { "branch": "main", "commit": "4433e5ec9a507e5097571ed55c02ea9658fb268a" }, "which-key.nvim": { "branch": "main", "commit": "4433e5ec9a507e5097571ed55c02ea9658fb268a" },
"windows.nvim": { "branch": "main", "commit": "c7492552b23d0ab30325e90b56066ec51242adc8" }, "windows.nvim": { "branch": "main", "commit": "c7492552b23d0ab30325e90b56066ec51242adc8" },
"yanky.nvim": { "branch": "main", "commit": "6bb9ffd3cad4c9876bda54e19d0659de28a4f84f" } "yanky.nvim": { "branch": "main", "commit": "6bb9ffd3cad4c9876bda54e19d0659de28a4f84f" },
"zen-mode.nvim": { "branch": "main", "commit": "50e2e2a36cc97847d9ab3b1a3555ba2ef6839b50" }
} }

View file

@ -68,6 +68,7 @@
"plugins.extras.ui.scrollbar", "plugins.extras.ui.scrollbar",
"plugins.extras.ui.smooth-scrolling", "plugins.extras.ui.smooth-scrolling",
"plugins.extras.ui.windows", "plugins.extras.ui.windows",
"plugins.extras.ui.zen-mode",
"plugins.extras.util.bigfile", "plugins.extras.util.bigfile",
"plugins.extras.util.discordrcp", "plugins.extras.util.discordrcp",
"plugins.extras.util.icon-picker", "plugins.extras.util.icon-picker",

View file

@ -5,6 +5,8 @@ return {
component_separators = { left = "", right = "" }, component_separators = { left = "", right = "" },
section_separators = { left = "", right = "" }, section_separators = { left = "", right = "" },
}) })
opts.sections.lualine_a = { { "mode", icon = "" } }
opts.sections.lualine_y = { { "progress", separator = " ", padding = { left = 1, right = 1 } } } opts.sections.lualine_y = { { "progress", separator = " ", padding = { left = 1, right = 1 } } }
opts.sections.lualine_z = { { "location", padding = { left = 1, right = 1 } } } opts.sections.lualine_z = { { "location", padding = { left = 1, right = 1 } } }
end, end,