diff options
author | Abouzar Parvan <[email protected]> | 2022-04-28 19:00:39 +0430 |
---|---|---|
committer | GitHub <[email protected]> | 2022-04-28 19:00:39 +0430 |
commit | 6a66e39f29f8bd1a7dce5e34c0790328f0e0db92 (patch) | |
tree | dff2e469f7855f7e5388517abdce16af4c3583ca /utils | |
parent | dd65e285656a5c46c52144f4e082c8e2d1d95757 (diff) |
feat(icons): make it possible to disable icons (#2529)
Diffstat (limited to 'utils')
-rw-r--r-- | utils/installer/config.example.lua | 2 | ||||
-rw-r--r-- | utils/installer/config_win.example.lua | 2 |
2 files changed, 4 insertions, 0 deletions
diff --git a/utils/installer/config.example.lua b/utils/installer/config.example.lua index 61c2f915..562d4060 100644 --- a/utils/installer/config.example.lua +++ b/utils/installer/config.example.lua @@ -12,6 +12,8 @@ an executable lvim.log.level = "warn" lvim.format_on_save = true lvim.colorscheme = "onedarker" +-- to disable icons and use a minimalist setup, uncomment the following +-- lvim.use_icons = false -- keymappings [view all the defaults by pressing <leader>Lk] lvim.leader = "space" diff --git a/utils/installer/config_win.example.lua b/utils/installer/config_win.example.lua index c6bf470e..b659263a 100644 --- a/utils/installer/config_win.example.lua +++ b/utils/installer/config_win.example.lua @@ -29,6 +29,8 @@ vim.g.clipboard = { lvim.log.level = "warn" lvim.format_on_save = true lvim.colorscheme = "onedarker" +-- to disable icons and use a minimalist setup, uncomment the following +-- lvim.use_icons = false -- keymappings [view all the defaults by pressing <leader>Lk] lvim.leader = "space" |