feat(statusline): new default icon
This commit is contained in:
parent
d2c42bec2c
commit
720ee95148
3 changed files with 6 additions and 1 deletions
|
@ -11,7 +11,7 @@ local config = require('cosmic.config')
|
||||||
|
|
||||||
local defaults = vim.tbl_deep_extend('force', {
|
local defaults = vim.tbl_deep_extend('force', {
|
||||||
statusline = {
|
statusline = {
|
||||||
main_icon = icons.ghost,
|
main_icon = icons.cosmic,
|
||||||
},
|
},
|
||||||
}, config.statusline or {})
|
}, config.statusline or {})
|
||||||
local main_icon = defaults.statusline.main_icon
|
local main_icon = defaults.statusline.main_icon
|
||||||
|
|
|
@ -6,6 +6,10 @@ local icons = {
|
||||||
arrow_left = '', -- e0b3
|
arrow_left = '', -- e0b3
|
||||||
arrow_right = '', -- e0b1
|
arrow_right = '', -- e0b1
|
||||||
ghost = '',
|
ghost = '',
|
||||||
|
cosmic = '💫',
|
||||||
|
star = '★',
|
||||||
|
scorpio = '♏︎',
|
||||||
|
rocket = '🚀',
|
||||||
warn = '',
|
warn = '',
|
||||||
info = '',
|
info = '',
|
||||||
error = '',
|
error = '',
|
||||||
|
|
|
@ -32,6 +32,7 @@ return packer.startup(function()
|
||||||
'nvim-lua/plenary.nvim',
|
'nvim-lua/plenary.nvim',
|
||||||
})
|
})
|
||||||
|
|
||||||
|
-- initialize theme plugins
|
||||||
require('cosmic.core.theme.plugins').init(use, config)
|
require('cosmic.core.theme.plugins').init(use, config)
|
||||||
|
|
||||||
use({
|
use({
|
||||||
|
|
Loading…
Add table
Reference in a new issue