mirror of
https://github.com/LazyVim/LazyVim.git
synced 2025-07-05 15:04:37 +02:00
fix(icons): replace obsolete icons (#441)
* fix(icons): replace obsolete icons * fix(icons): bigger icons * fix(icons): bigger folder icon --------- Co-authored-by: Folke Lemaitre <folke.lemaitre@gmail.com>
This commit is contained in:
parent
6b740fd300
commit
cec000dfd8
2 changed files with 5 additions and 5 deletions
|
@ -21,7 +21,7 @@ local defaults = {
|
||||||
diagnostics = {
|
diagnostics = {
|
||||||
Error = " ",
|
Error = " ",
|
||||||
Warn = " ",
|
Warn = " ",
|
||||||
Hint = " ",
|
Hint = " ",
|
||||||
Info = " ",
|
Info = " ",
|
||||||
},
|
},
|
||||||
git = {
|
git = {
|
||||||
|
@ -42,7 +42,7 @@ local defaults = {
|
||||||
Event = " ",
|
Event = " ",
|
||||||
Field = " ",
|
Field = " ",
|
||||||
File = " ",
|
File = " ",
|
||||||
Folder = " ",
|
Folder = " ",
|
||||||
Function = " ",
|
Function = " ",
|
||||||
Interface = " ",
|
Interface = " ",
|
||||||
Key = " ",
|
Key = " ",
|
||||||
|
@ -50,7 +50,7 @@ local defaults = {
|
||||||
Method = " ",
|
Method = " ",
|
||||||
Module = " ",
|
Module = " ",
|
||||||
Namespace = " ",
|
Namespace = " ",
|
||||||
Null = "ﳠ ",
|
Null = " ",
|
||||||
Number = " ",
|
Number = " ",
|
||||||
Object = " ",
|
Object = " ",
|
||||||
Operator = " ",
|
Operator = " ",
|
||||||
|
|
|
@ -240,9 +240,9 @@ return {
|
||||||
|
|
||||||
dashboard.section.header.val = vim.split(logo, "\n")
|
dashboard.section.header.val = vim.split(logo, "\n")
|
||||||
dashboard.section.buttons.val = {
|
dashboard.section.buttons.val = {
|
||||||
dashboard.button("f", " " .. " Find file", ":Telescope find_files <CR>"),
|
dashboard.button("f", " " .. " Find file", ":Telescope find_files <CR>"),
|
||||||
dashboard.button("n", " " .. " New file", ":ene <BAR> startinsert <CR>"),
|
dashboard.button("n", " " .. " New file", ":ene <BAR> startinsert <CR>"),
|
||||||
dashboard.button("r", " " .. " Recent files", ":Telescope oldfiles <CR>"),
|
dashboard.button("r", " " .. " Recent files", ":Telescope oldfiles <CR>"),
|
||||||
dashboard.button("g", " " .. " Find text", ":Telescope live_grep <CR>"),
|
dashboard.button("g", " " .. " Find text", ":Telescope live_grep <CR>"),
|
||||||
dashboard.button("c", " " .. " Config", ":e $MYVIMRC <CR>"),
|
dashboard.button("c", " " .. " Config", ":e $MYVIMRC <CR>"),
|
||||||
dashboard.button("s", " " .. " Restore Session", [[:lua require("persistence").load() <cr>]]),
|
dashboard.button("s", " " .. " Restore Session", [[:lua require("persistence").load() <cr>]]),
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue