[2024-05-31] Feline colours

This commit is contained in:
Andrew Conlin 2024-05-31 14:55:34 +01:00
parent b2bb2a5090
commit db30de940b
3 changed files with 63 additions and 29 deletions

View File

@ -30,7 +30,7 @@ Plug 'neovim/nvim-lspconfig'
"Plug 'hrsh7th/cmp-vsnip' "Plug 'hrsh7th/cmp-vsnip'
"Plug 'hrsh7th/vim-vsnip' "Plug 'hrsh7th/vim-vsnip'
"Plug 'rafamadriz/friendly-snippets' "Plug 'rafamadriz/friendly-snippets'
Plug 'mathworks/MATLAB-extension-for-vscode' "Plug 'mathworks/MATLAB-extension-for-vscode'
" main one " main one
Plug 'ms-jpq/coq_nvim', {'branch': 'coq'} Plug 'ms-jpq/coq_nvim', {'branch': 'coq'}
" 9000+ Snippets " 9000+ Snippets
@ -41,6 +41,7 @@ Plug 'justinhj/battery.nvim'
Plug 'MunifTanjim/nui.nvim' Plug 'MunifTanjim/nui.nvim'
Plug 'rcarriga/nvim-notify' Plug 'rcarriga/nvim-notify'
Plug 'folke/noice.nvim' Plug 'folke/noice.nvim'
"Plug 'iamcco/markdown-preview.nvim', { 'do': 'cd app && npx --yes yarn install' }
call plug#end() call plug#end()
set bg=dark set bg=dark

View File

@ -24,7 +24,7 @@ status_components.active[1][1] = {
provider = 'vi_mode', provider = 'vi_mode',
hl = function() hl = function()
return { return {
name = (require('feline.providers.vi_mode').get_mode_highlight_name()) .. " ", name = (require('feline.providers.vi_mode').get_mode_highlight_name()),
bg = require('feline.providers.vi_mode').get_mode_color(), bg = require('feline.providers.vi_mode').get_mode_color(),
fg = 'bg', fg = 'bg',
style = 'bold' style = 'bold'
@ -40,7 +40,7 @@ status_components.active[1][1] = {
hl = function() hl = function()
return { return {
fg = require('feline.providers.vi_mode').get_mode_color(), fg = require('feline.providers.vi_mode').get_mode_color(),
bg = 'bg' bg = 'bg1'
} }
end end
} }
@ -50,10 +50,11 @@ status_components.active[1][1] = {
} }
status_components.active[3][1] = { status_components.active[3][1] = {
provider = 'battery', provider = 'battery',
hl = {bg = 'bg3'},
left_sep = { left_sep = {
{ {
str = 'left', str = 'left_filled',
hl = {fg = 'fg'} hl = {fg = 'bg3',bg = 'bg1'}
}, },
{str = 'block'} {str = 'block'}
}, },
@ -65,18 +66,19 @@ status_components.active[3][2] = {
provider = 'date', provider = 'date',
hl = function() hl = function()
return { return {
name = (require('feline.providers.vi_mode').get_mode_highlight_name()) .. " ", fg = 'fg',
fg = require('feline.providers.vi_mode').get_mode_color(), bg = 'bg4'
bg = 'bg'
} }
end, end,
left_sep = { left_sep = {
{str = 'left', {str = 'left_filled',
hl = function() hl = function()
return { fg = require('feline.providers.vi_mode').get_mode_color() } return { fg = 'bg4', bg = 'bg3' }
end end
}, },
{str = 'block'} {
str = 'block',
}
}, },
right_sep = { right_sep = {
str = 'block' str = 'block'
@ -97,7 +99,7 @@ status_components.active[3][3] = {
hl = function() hl = function()
return { return {
fg = require('feline.providers.vi_mode').get_mode_color(), fg = require('feline.providers.vi_mode').get_mode_color(),
bg = 'bg' bg = 'bg4'
} }
end }, end },
right_sep = { right_sep = {
@ -119,7 +121,11 @@ local custom_providers = {
return git_diff('changed'), '' return git_diff('changed'), ''
end, end,
word_count = function() word_count = function()
return vim.fn.wordcount().words .. 'W ' if vim.api.nvim_buf_get_option(0, 'filetype') == 'markdown' then
return vim.fn.wordcount().words .. 'W '
else
return ""
end
end, end,
date = function() date = function()
return tostring(vim.fn.strftime('%Y-%m-%d')) return tostring(vim.fn.strftime('%Y-%m-%d'))
@ -155,9 +161,10 @@ win_components.active[1][1] = {
right_sep = { right_sep = {
{ {
str = 'block' str = 'block'
}, },
{ {
str = 'right_filled' str = 'right_filled',
hl = { bg = 'bg4' }
} }
}, },
icon = function() icon = function()
@ -174,36 +181,39 @@ win_components.active[1][1] = {
} }
win_components.active[1][2] = { win_components.active[1][2] = {
provider = 'file_size', provider = 'file_size',
hl = { bg = 'bg4' },
left_sep = 'block', left_sep = 'block',
right_sep = { right_sep = {
str = 'block', str = 'block'
hl = { fg = 'bg' }
} }
} }
win_components.active[1][3] = { win_components.active[1][3] = {
provider = 'file_encoding', provider = 'file_encoding',
hl = { bg = 'bg4' },
right_sep = { right_sep = {
str = 'block', str = 'block',
hl = { fg = 'bg' } hl = { fg = 'bg4' }
} }
} }
win_components.active[1][4] = { win_components.active[1][4] = {
provider = 'file_format', provider = 'file_format',
hl = { bg = 'bg4' },
right_sep = { right_sep = {
str = 'block', str = 'block',
hl = { fg = 'bg' } hl = { fg = 'bg4' }
} }
} }
win_components.active[1][5] = { win_components.active[1][5] = {
provider = 'file_type', provider = 'file_type',
hl = { bg = 'bg4' },
right_sep = { right_sep = {
{ {
str = 'block', str = 'block',
hl = { fg = 'bg' } hl = { fg = 'bg4' }
}, },
{ {
str = 'right', str = 'right_filled',
hl = { fg = 'fg' } hl = { fg = 'bg4', bg = 'bg1' }
} }
} }
} }
@ -228,16 +238,29 @@ win_components.active[3][4] = {
} }
win_components.active[3][5] = { win_components.active[3][5] = {
provider = 'word_count', provider = 'word_count',
left_sep = 'block' hl = { bg = 'bg3' },
left_sep = {
{str = 'left_filled', hl = {fg = 'bg3', bg = 'bg1'}, always_visible = true},
{str = 'block', hl = {fg = 'bg3'}, always_visible = true}
}
} }
win_components.active[3][6] = { win_components.active[3][6] = {
provider = 'position' provider = {
name = 'position',
opts = {
padding = {line = 3, col = 2},
format = 'L{line} C{col}'
}
},
hl = { bg = 'bg4' },
left_sep = {
{str = 'left_filled', hl = {fg = 'bg4', bg = 'bg3'}},
{str = 'block', hl = {fg = 'bg4'}}
}
} }
win_components.active[3][7] = { win_components.active[3][7] = {
provider = 'line_percentage', provider = 'line_percentage',
hl = { hl = { bg = 'bg4' },
fg = 'blue',
},
left_sep = { left_sep = {
str = 'block' str = 'block'
}, },
@ -246,7 +269,8 @@ win_components.active[3][7] = {
} }
} }
win_components.active[3][8] = { win_components.active[3][8] = {
provider = 'scroll_bar' provider = 'scroll_bar',
hl = { bg = 'bg4' }
} }
win_config.components = win_components win_config.components = win_components
require('feline').winbar.setup(win_config) require('feline').winbar.setup(win_config)

View File

@ -8,13 +8,22 @@ local colo = function(n)
end end
return { return {
bg = colo("GruvboxBg0"), bg = colo("GruvboxBg0"),
bg1 = colo("GruvboxBg1"),
bg2 = colo("GruvboxBg2"),
bg3 = colo("GruvboxBg3"),
bg4 = colo("GruvboxBg4"),
black = '#000000', black = '#000000',
fg = colo("GruvboxFg0"), fg = colo("GruvboxFg0"),
fg1 = colo("GruvboxFg1"),
fg2 = colo("GruvboxFg2"),
fg3 = colo("GruvboxFg3"),
fg4 = colo("GruvboxFg4"),
green = colo("GruvboxGreen"), green = colo("GruvboxGreen"),
blue = colo("GruvboxBlue"), blue = colo("GruvboxBlue"),
orange = colo("GruvboxOrange"), orange = colo("GruvboxOrange"),
red = colo("GruvboxRed"), red = colo("GruvboxRed"),
purple = colo("GruvboxPurple"), purple = colo("GruvboxPurple"),
white = '#FFFFFF', white = '#FFFFFF',
yellow = colo("GruvboxYellow") yellow = colo("GruvboxYellow"),
aqua = colo("GruvboxAqua")
} }