| Commit message (Collapse) | Author | Age |
| |
|
|
|
|
|
|
|
|
|
|
| |
The files were formatted according to the `.editorconfig` file and with
the formatter from [this](1) repo, as it's the only one that fully
understands all keys in the `.editorconfig` file.
The formatting was chosen in this special (and honestly unconventional)
way because moving code from lua to nix is now easier, as the syntax is
nearly identical in some places.
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
|
|
|
|
| |
Vim tex doesnn't really not work with treesitter, and nightfox doesn't
really work without treesitter thus a new colorscheme was chooses.
|
| |
|
| |
|
| |
|
|
|
|
|
| |
NixVim automatically sets up the capabilities if the nvim_cmp plugin is
activated.
|
| |
|
| |
|
| |
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
Without this the following code would be completely minimized:
```
{...}:{
services.lua_language={
enable=true;
};
}
```
→
```
{...}:{
services.lua_language={
enable=true;
};
}
```.
Now it should only strip the whitespace at the end of the lines.
|
|
|
|
|
| |
This would otherwise unmap the mapping of n to "g<up>", thus making
upwards movement impossible.
|
| |
|
| |
|
| |
|
| |
|
| |
|