If you found this Gist, then keep in mind that it is not complete unting this message gets removed. There are missing steps.
- Remove fill
- Set the viewport
- Export clean SVG
- Optimizations?
https://github.com/oswee/prime/ansible/custom/roles/nvim
99% of the config examples i saw in the wild gives me a feeling that people actually don't know what they are doing with Neovim configuration. Neither I do. But I am questioning myself: How to structure configuration in a clean, modular, swappable, easy to read and navigate way. There, in the wild, I see things like: "Throw it all in a single file", "Plugins are evil, vanilla Vim is all I need", "I will leave that dead code for the reference in case if I need it",
In a `~/.config/qutebrowser/config.py
config.set("fileselect.handler", "external")
config.set("fileselect.single_file.command", ['alacritty', '--class', 'ranger', '-e', 'ranger', '--choosefile', '{}'])
config.set("fileselect.multiple_files.command", ['alacritty', '--class', 'ranger', '-e', 'ranger', '--choosefile', '{}'])
In a ~/.config/sway/config
for_window [app_id="ranger"] floating enable
Set WshShell = CreateObject("WScript.Shell") | |
MsgBox ConvertToKey(WshShell.RegRead("HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion\DigitalProductId")) | |
Function ConvertToKey(Key) | |
Const KeyOffset = 52 | |
i = 28 | |
Chars = "BCDFGHJKMPQRTVWXY2346789" | |
Do | |
Cur = 0 | |
x = 14 |
[UPDATE] by Dzintars Klavins @ 2023-05-15
These instructions is no more quite accurate. Current setup is much more simpler. Probably I will update these instructions at some point.
[WIP] by Dzintars Klavins @ 2021-08-28
These instructions is written for myself as an reminder guide. It is higly possible that they are wrong, outdated, un-maintained.
To avoid ../../../../../../filename.ts
garbage in the source code you can use Typescript Path Aliases.
This approach not only cleans up your imports but also helps when making refacoring and moving packages/modules around.
No matter where you will place your package, all imports allways will be resolvable.
But this is not enought at runtime. For example if you want to run WebPack dev-server. By default webpack does not know how to resolve those imports. You need to tweak WebPack config
Other resources: