dotfiles
dotfiles copied to clipboard
All my dotfiles in one place!
When doing diffs of files, (Neo)vim has the behavior of showing the added/deleted lines compared to the other file, BUT in git/github' side-by-side view will instead only show deleted lines...
In config for `nvim-surround` I made surrounds to easily add/change/delete Lua's `[[` & `]]` delimiters using `` (with space(s)) and `` (without space). When I did these I'm pretty sure...
When opening multiple files from command line, only a few files gets highlighted, the first + some others (at random?). Maybe linked to: - https://github.com/neovim/neovim/issues/4684 - https://github.com/neovim/neovim/issues/7367
Sometimes it closes the completion popup, so I have to press `` twice to make a newline :confused: (unpredictable!)
#### Brainstorm ```sh git grep TODO main | sed 's/^[^:]\+://' > main_todos git grep TODO HEAD | sed 's/^[^:]\+://' > head_todoes combine head_todoes xor main_todos ``` That looks like it...
Repro: ```console $ mkdir -vp proj_parent/proj $ cd proj_parent/proj $ venv # init venv! $ cd ../.. $ rm -r proj_parent ``` 👉 Prompt broken & every prompt redraw gives...
When I'm writing a command, sometimes I want to quickly check the help or man page of a command. Keybind idea: `Ctrl-Alt-h` ## How it could work Based on current...
When first opening wezterm, the immediately available zsh is different than the zsh available in tmux, where all the `^X`-based keybinds are simply not there 👀 Can check the presence...
Existing plugin: https://github.com/marlonrichert/zsh-autocomplete (note: nice plugin organization!) BUT NOTE that it seems to come with its own completion engine, and [its key bindings](https://github.com/marlonrichert/zsh-autocomplete/blob/main/scripts/.autocomplete.key-binding), and [its own completion config (may be...
See my discussion at: https://gitter.im/neovim/neovim?at=5e59c5feff6f6d2e8876b3f9 Now that I re-think about it, I don't really need vim-ripgrep plugin anymore, since I have Denite with 'grep/rg' filter (since 3e9ec7c16b1ed4c341ccf580fc8956d994cb8cc8) for project-wide searching....