[2024-05-20] Modified feline, added battery and date
This commit is contained in:
parent
fa561b403a
commit
4e00f4eb86
@ -36,6 +36,8 @@ Plug 'ms-jpq/coq_nvim', {'branch': 'coq'}
|
|||||||
" 9000+ Snippets
|
" 9000+ Snippets
|
||||||
Plug 'ms-jpq/coq.artifacts', {'branch': 'artifacts'}
|
Plug 'ms-jpq/coq.artifacts', {'branch': 'artifacts'}
|
||||||
Plug 'nvim-treesitter/nvim-treesitter', {'do': ':TSUpdate'}
|
Plug 'nvim-treesitter/nvim-treesitter', {'do': ':TSUpdate'}
|
||||||
|
Plug 'xiyaowong/transparent.nvim'
|
||||||
|
Plug 'justinhj/battery.nvim'
|
||||||
call plug#end()
|
call plug#end()
|
||||||
|
|
||||||
set bg=dark
|
set bg=dark
|
||||||
|
@ -3,3 +3,4 @@ require('plugins.feline')
|
|||||||
require('gitsigns').setup()
|
require('gitsigns').setup()
|
||||||
require('plugins.matlab_ls')
|
require('plugins.matlab_ls')
|
||||||
require('plugins.treesitter')
|
require('plugins.treesitter')
|
||||||
|
require('battery').setup()
|
||||||
|
@ -51,10 +51,7 @@ status_components.active[1][1] = {
|
|||||||
|
|
||||||
status_components.active[3][1] = {
|
status_components.active[3][1] = {
|
||||||
provider = {
|
provider = {
|
||||||
name = 'position',
|
name = 'position'
|
||||||
opts = {
|
|
||||||
padding = true
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
status_components.active[3][2] = {
|
status_components.active[3][2] = {
|
||||||
@ -74,7 +71,7 @@ status_components.active[3][3] = {
|
|||||||
}
|
}
|
||||||
local custom_providers = {
|
local custom_providers = {
|
||||||
time = function()
|
time = function()
|
||||||
return tostring(vim.fn.strftime('%H:%M'))
|
return tostring(vim.fn.strftime('%H:%M'))
|
||||||
end,
|
end,
|
||||||
git_add = function()
|
git_add = function()
|
||||||
return git_diff('added'), ' '
|
return git_diff('added'), ' '
|
||||||
@ -84,6 +81,12 @@ local custom_providers = {
|
|||||||
end,
|
end,
|
||||||
git_change = function()
|
git_change = function()
|
||||||
return git_diff('changed'), ' '
|
return git_diff('changed'), ' '
|
||||||
|
end,
|
||||||
|
date = function()
|
||||||
|
return tostring(vim.fn.strftime('%Y-%m-%d'))
|
||||||
|
end,
|
||||||
|
battery = function()
|
||||||
|
return require('battery').get_status_line()
|
||||||
end
|
end
|
||||||
}
|
}
|
||||||
status_config.components = status_components
|
status_config.components = status_components
|
||||||
@ -179,6 +182,24 @@ win_components.active[3][4] = {
|
|||||||
right_sep = 'right_rounded'
|
right_sep = 'right_rounded'
|
||||||
}
|
}
|
||||||
win_components.active[3][5] = {
|
win_components.active[3][5] = {
|
||||||
|
provider = 'battery',
|
||||||
|
left_sep = {
|
||||||
|
str = 'block'
|
||||||
|
},
|
||||||
|
right_sep = {
|
||||||
|
str = 'block'
|
||||||
|
}
|
||||||
|
}
|
||||||
|
win_components.active[3][6] = {
|
||||||
|
provider = 'date',
|
||||||
|
left_sep = {
|
||||||
|
str = 'block'
|
||||||
|
},
|
||||||
|
right_sep = {
|
||||||
|
str = 'block'
|
||||||
|
}
|
||||||
|
}
|
||||||
|
win_components.active[3][7] = {
|
||||||
provider = 'time',
|
provider = 'time',
|
||||||
left_sep = {
|
left_sep = {
|
||||||
str = 'block'
|
str = 'block'
|
||||||
|
Loading…
x
Reference in New Issue
Block a user