Neovim: Add presence
This commit is contained in:
@ -1306,22 +1306,6 @@ in {
|
|||||||
lazy = true;
|
lazy = true;
|
||||||
};
|
};
|
||||||
|
|
||||||
# TODO: Doesn't work
|
|
||||||
# _inc-rename = {
|
|
||||||
# name = "inc-rename";
|
|
||||||
# pkg = pkgs.vimPlugins.inc-rename-nvim;
|
|
||||||
# lazy = false;
|
|
||||||
# cmd = ["IncRename"];
|
|
||||||
# config = ''
|
|
||||||
# function(_, opts)
|
|
||||||
# require("inc_rename").setup()
|
|
||||||
# end
|
|
||||||
# '';
|
|
||||||
# opts = {
|
|
||||||
# preview_empty_name = true;
|
|
||||||
# };
|
|
||||||
# };
|
|
||||||
|
|
||||||
noice = rec {
|
noice = rec {
|
||||||
name = "noice";
|
name = "noice";
|
||||||
pkg = pkgs.vimPlugins.noice-nvim;
|
pkg = pkgs.vimPlugins.noice-nvim;
|
||||||
@ -1418,6 +1402,18 @@ in {
|
|||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
presence = rec {
|
||||||
|
name = "presence";
|
||||||
|
pkg = pkgs.vimPlugins.presence-nvim;
|
||||||
|
lazy = true;
|
||||||
|
event = ["BufReadPost" "BufNewFile"];
|
||||||
|
config = mkDefaultConfig name;
|
||||||
|
opts = {
|
||||||
|
auto_update = true;
|
||||||
|
show_time = false;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
quickfix-reflector = {
|
quickfix-reflector = {
|
||||||
name = "quickfix-reflector";
|
name = "quickfix-reflector";
|
||||||
pkg = pkgs.vimPlugins.quickfix-reflector-vim;
|
pkg = pkgs.vimPlugins.quickfix-reflector-vim;
|
||||||
@ -1987,6 +1983,7 @@ in {
|
|||||||
noice # Modern UI overhaul, e.g. floating cmdline
|
noice # Modern UI overhaul, e.g. floating cmdline
|
||||||
obsidian # Integration with Obsidian.md
|
obsidian # Integration with Obsidian.md
|
||||||
oil # File manager
|
oil # File manager
|
||||||
|
presence # Discord rich presence
|
||||||
quickfix-reflector # Make the quickfix list editable and saveable to apply changes
|
quickfix-reflector # Make the quickfix list editable and saveable to apply changes
|
||||||
rainbow-delimiters # Bracket/Paren colorization
|
rainbow-delimiters # Bracket/Paren colorization
|
||||||
rustaceanvim # Rust integration
|
rustaceanvim # Rust integration
|
||||||
|
Reference in New Issue
Block a user