neovim: switch to cord.nvim
All checks were successful
ci/woodpecker/cron/flake-lock-update Pipeline was successful

This commit is contained in:
notohh 2024-11-01 12:19:54 -04:00
parent 95cd793a00
commit edf73c442b
Signed by: notohh
GPG key ID: BD47506D475EE86D

View file

@ -1,9 +1,30 @@
_: {
programs.nixvim.plugins.neocord = {
enable = true;
settings = {
auto_update = true;
enable_line_number = true;
};
{pkgs, ...}: {
programs.nixvim = {
extraPlugins = with pkgs.vimPlugins; [
cord-nvim
];
extraConfigLua = ''
require('cord').setup {
editor = {
tooltip = 'Neovim'
},
display = {
show_time = true,
show_repository = true,
show_cursor_position = true,
},
lsp = {
show_problem_count = true,
severity = 1,
scope = 'workspace',
},
buttons = {
{
label = 'View Repository',
url = 'git',
},
},
}
'';
};
}