Compare commits

...

3 Commits

Author SHA1 Message Date
245d410f48 meta: add file 2024-11-02 19:26:20 +02:00
3f3ea931d8 wal: add everforest theme 2024-10-26 11:45:11 +03:00
c8c7352437 nvim: update which-key to match spec 2024-10-12 18:32:58 +03:00
3 changed files with 35 additions and 2 deletions

View File

@ -0,0 +1,7 @@
some notes for when reinstalling this setup:
# Xorg client limit
Xorg has a weird limit on the amount of clients, and every yabridge plugin is a new X client. The limit is 256, which can be easily be achieved. To change the limit to the maximum:
```bash
printf 'Section "ServerFlags"\n\tOption "MaxClients" "2048"\nEndSection\n' > /etc/X11/xorg.conf.d/99-maxclients.conf
```

View File

@ -5,7 +5,7 @@ return {
},
config = function()
local wk = require("which-key")
wk.register({
wk.add({
{ "<leader>a", group = "actions" },
{ "<leader>c", group = "terminal" },
{ "<leader>d", group = "debug" },
@ -15,7 +15,8 @@ return {
{ "<leader>r", group = "refactoring" },
{ "<leader>t", group = "telescope" },
{ "<leader>v", group = "vcs" },
}, { prefix = "<leader>" })
})
end,
dependencies = {
"echasnovski/mini.icons",

View File

@ -0,0 +1,25 @@
{
"special": {
"background": "#272e33",
"foreground": "#d3c6aa",
"cursor": "#4f5b58"
},
"colors": {
"color0": "#272e33",
"color1": "#e67e80",
"color2": "#e69875",
"color3": "#dbbc7f",
"color4": "#a7c080",
"color5": "#83c092",
"color6": "#7fbbb3",
"color7": "#d3c6aa",
"color8": "#232a2e",
"color9": "#e67e80",
"color10": "#e69875",
"color11": "#dbbc7f",
"color12": "#a7c080",
"color13": "#83c092",
"color14": "#7fbbb3",
"color15": "#d3c6aa"
}
}