feat: add colorpicker plugin and rename keys -> binds

This commit is contained in:
NotAShelf 2023-02-04 01:45:31 +03:00
commit 44692d64d5
No known key found for this signature in database
GPG key ID: 5B5C8895F28445F1
2 changed files with 51 additions and 2 deletions

View file

@ -105,9 +105,9 @@
enable = true;
context.enable = true;
};
vim.keys = {
enable = true;
vim.binds = {
whichKey.enable = true;
cheatsheet.enable = true;
};
vim.telescope = {
enable = true;
@ -131,6 +131,9 @@
vim.notify = {
nvim-notify.enable = true;
};
vim.utility = {
colorizer.enable = true;
};
};
};
@ -216,6 +219,7 @@
inputs = {
nixpkgs.url = "github:nixos/nixpkgs/nixpkgs-unstable";
flake-utils.url = "github:numtide/flake-utils";
# For generating documentation website
nmd = {
url = "gitlab:rycee/nmd";
@ -443,6 +447,11 @@
flake = false;
};
cheatsheet-nvim = {
url = "github:sudormrfbin/cheatsheet.nvim";
flake = false;
};
# Markdown
glow-nvim = {
url = "github:ellisonleao/glow.nvim";
@ -477,5 +486,11 @@
url = "github:rcarriga/nvim-notify";
flake = false;
};
# Utilities
colorizer = {
url = "github:uga-rosa/ccc.nvim";
flake = false;
};
};
}