Compare commits
3 Commits
9db6d0de25
...
245d410f48
| Author | SHA1 | Date | |
|---|---|---|---|
| 245d410f48 | |||
| 3f3ea931d8 | |||
| c8c7352437 |
7
.config/mequidots/notes.md
Normal file
7
.config/mequidots/notes.md
Normal 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
|
||||
```
|
||||
@ -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",
|
||||
|
||||
25
.config/wal/colorschemes/dark/everforest.json
Normal file
25
.config/wal/colorschemes/dark/everforest.json
Normal 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"
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user