Benedikt M. Rips
Benedikt M. Rips
May be a duplicate of #482 by now. **Describe the bug** After opening the preview with `:MarkdownPreview` or `MarkdownPreviewToggle`, an empty preview is shown despite the document being non-empty. **To...
Taken from [here](https://github.com/TheBlob42/drex.nvim/wiki/Configuration#lualine-setup).
Use Vim's table functions and `vim.keymap.set` instead of `nvim_set_keymap`; the latter was introduced with Neovim v0.7. IMO, `vim.keymap.set` is more flexible as it allows lua functions as RHS and disables...
**Reasons for making this change:** After compiling a TeX document that uses the pdfcomment package, there was an auxiliary file with the .lpc extension that I have not seen before....
In each line of the DB, only the first space separates the alias and the directory name, hence the other spaces belong to the directory name.
I use `set formatoptions+=t` and `set formatoptions-=t` quite often. Since it resembles a hard wrap, I mapped it to the option map "W".
Hello, I encountered a strange issue when developing a Haskell project. I used to enter my dev environment with `nix-shell`, everything worked fine. But nix-direnv seems to mess up the...
In the Nix language, every assignment is introduced with an equals sign and closed by a semicolon. This rule automatically inserts a semicolon if `= ` has been entered. Apparently,...