mirror of
https://github.com/akr2002/nv.git
synced 2025-03-12 18:06:15 +00:00
remove neocord
This commit is contained in:
parent
69bd5de604
commit
3bccbae284
3 changed files with 13 additions and 30 deletions
|
@ -59,7 +59,6 @@
|
||||||
./utils/illuminate.nix
|
./utils/illuminate.nix
|
||||||
./utils/markdown-preview.nix
|
./utils/markdown-preview.nix
|
||||||
./utils/mini.nix
|
./utils/mini.nix
|
||||||
./utils/neocord.nix
|
./utils/neodev.nix
|
||||||
|
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,28 +0,0 @@
|
||||||
{
|
|
||||||
plugins.neocord = {
|
|
||||||
enable = true;
|
|
||||||
settings = {
|
|
||||||
auto_update = true;
|
|
||||||
blacklist = [];
|
|
||||||
client_id = "1157438221865717891";
|
|
||||||
debounce_timeout = 10;
|
|
||||||
editing_text = "Editing...";
|
|
||||||
enable_line_number = true;
|
|
||||||
logo = "https://repository-images.githubusercontent.com/325421844/ecb73f47-cb89-4ee0-a0fd-9743c2f3569a";
|
|
||||||
logo_tooltip = "NixVim";
|
|
||||||
file_assets = null;
|
|
||||||
file_explorer_text = "Browsing...";
|
|
||||||
git_commit_text = "Committing changes...";
|
|
||||||
global_timer = true;
|
|
||||||
line_number_text = "Line %s out of %s";
|
|
||||||
log_level = null;
|
|
||||||
main_image = "logo";
|
|
||||||
plugin_manager_text = "Managing plugins...";
|
|
||||||
reading_text = "Reading...";
|
|
||||||
show_time = true;
|
|
||||||
terminal_text = "Using Terminal...";
|
|
||||||
workspace_text = "Working on %s";
|
|
||||||
};
|
|
||||||
};
|
|
||||||
}
|
|
||||||
|
|
12
config/utils/neodev.nix
Normal file
12
config/utils/neodev.nix
Normal file
|
@ -0,0 +1,12 @@
|
||||||
|
{pkgs, ...}: {
|
||||||
|
extraPlugins = with pkgs.vimPlugins; [
|
||||||
|
neodev-nvim
|
||||||
|
];
|
||||||
|
|
||||||
|
extraConfigLua = ''
|
||||||
|
require("neodev").setup({
|
||||||
|
library = { plugins = {"neotest"}, types = true},
|
||||||
|
})
|
||||||
|
'';
|
||||||
|
}
|
||||||
|
|
Loading…
Reference in a new issue