| Commit message (Collapse) | Author | Age | Files | Lines | ||
|---|---|---|---|---|---|---|
| ... | ||||||
| * | docs(nvim): comment | Thomas Vanbesien | 12 days | 1 | -1/+1 | |
| | | ||||||
| * | misc(nvim): edit floating window and popup menu style | Thomas Vanbesien | 12 days | 1 | -0/+9 | |
| | | | | | Same bg as what's behind and a visible rounded border. | |||||
| * | fix(nvim): floating window width | Thomas Vanbesien | 12 days | 1 | -1/+1 | |
| | | | | | The left_margin = 2 was messing with the floating window width. | |||||
| * | misc(nvim): remove unused option | Thomas Vanbesien | 12 days | 1 | -1/+1 | |
| | | | | | `popup` overrides `preview`. | |||||
| * | feat(nvim): add transform_text plugin | Thomas Vanbesien | 12 days | 1 | -0/+25 | |
| | | | | | With mappings to URL-encode/decode visual selection. | |||||
| * | feat(nvim): add follow plugin (open file/URL) | Thomas Vanbesien | 12 days | 1 | -0/+126 | |
| | | ||||||
| * | feat(nvim): add notes plugin | Thomas Vanbesien | 12 days | 1 | -0/+5 | |
| | | ||||||
| * | misc(nvim): remove git key mappings | Thomas Vanbesien | 12 days | 1 | -5/+0 | |
| | | ||||||
| * | misc(nvim): edit comment, descriptions, and user command names | Thomas Vanbesien | 12 days | 4 | -8/+8 | |
| | | ||||||
| * | misc(nvim): edit popup menu height | Thomas Vanbesien | 12 days | 1 | -1/+1 | |
| | | ||||||
| * | misc(nvim): comment and reorder | Thomas Vanbesien | 12 days | 1 | -4/+4 | |
| | | ||||||
| * | misc(nvim): update key mappings | Thomas Vanbesien | 12 days | 1 | -10/+24 | |
| | | ||||||
| * | refactor(nvim): make `show_buf_diff_orig()` more robust | Thomas Vanbesien | 12 days | 1 | -5/+18 | |
| | | ||||||
| * | misc(nvim): remove unused parameter | Thomas Vanbesien | 12 days | 1 | -1/+1 | |
| | | ||||||
| * | misc(nvim): add keymap to simulate i_CTRL-R in terminal mode | Thomas Vanbesien | 2026-06-05 | 1 | -0/+8 | |
| | | ||||||
| * | misc(nvim): split fzf window horizontally on smaller screen width | Thomas Vanbesien | 2026-06-05 | 1 | -1/+8 | |
| | | ||||||
| * | misc(nvim): add `:TabRenameToCurrentFileNameNoExt` command | Thomas Vanbesien | 2026-06-02 | 1 | -0/+5 | |
| | | ||||||
| * | misc(nvim): remove 50-dotfiles.lua | Thomas Vanbesien | 2026-06-02 | 1 | -49/+0 | |
| | | | | | | The `DotfilesOn` and `DotfilesOff` commands have been replaced with `dotfiles on|off`. | |||||
| * | refactor(nvim): use the correct API for wildtrigger() | Thomas Vanbesien | 2026-06-02 | 1 | -1/+1 | |
| | | | | | | Use `vim.fn.wildtrigger()` instead of `vim.cmd.call("wildtrigger()")`. This avoid marshalling the value between Lua and the Vimscript engine. | |||||
| * | fix(nvim): fix backup directory | Thomas Vanbesien | 2026-06-02 | 1 | -1/+1 | |
| | | ||||||
| * | refactor(nvim): remove unused keymap.set() calls | Thomas Vanbesien | 2026-06-02 | 1 | -2/+0 | |
| | | ||||||
| * | misc(nvim): update dictionary | Thomas Vanbesien | 2026-06-02 | 1 | -0/+1 | |
| | | ||||||
| * | refactor(nvim): remove dead code | Thomas Vanbesien | 2026-06-02 | 1 | -11/+0 | |
| | | ||||||
| * | refactor(nvim): deduplicate lualine setup | Thomas Vanbesien | 2026-06-02 | 1 | -12/+13 | |
| | | ||||||
| * | misc(nvim): add border around popup menus | Thomas Vanbesien | 2026-06-02 | 1 | -0/+1 | |
| | | ||||||
| * | docs(nvim): comment | Thomas Vanbesien | 2026-06-02 | 1 | -0/+2 | |
| | | ||||||
| * | misc(nvim): add keymap for GitBlame | Thomas Vanbesien | 2026-06-02 | 1 | -0/+1 | |
| | | ||||||
| * | misc(nvim): GitBlame displays in a floating window | Thomas Vanbesien | 2026-06-02 | 2 | -13/+67 | |
| | | ||||||
| * | misc(nvim): don't start terminal mode automatically | Thomas Vanbesien | 2026-06-02 | 1 | -10/+0 | |
| | | | | | | It's annoying because it scrolls to the prompt so I'd rather start insert mode manually. | |||||
| * | misc(nvim): lighter active cursorline highlight | Thomas Vanbesien | 2026-06-01 | 1 | -19/+6 | |
| | | ||||||
| * | misc(nvim): remove dead code | Thomas Vanbesien | 2026-06-01 | 1 | -2/+0 | |
| | | | | | The Cursorline highlight is overwritten by `set_cursorline_hl()`. | |||||
| * | misc(nvim): smart split git diff window in gitcommit files | Thomas Vanbesien | 2026-06-01 | 1 | -2/+10 | |
| | | | | | | Split the window horizontally when there is not enough columns on the screen to display the cached git diff comfortably. | |||||
| * | misc(nvim): explicit autocommand description | Thomas Vanbesien | 2026-06-01 | 1 | -1/+1 | |
| | | ||||||
| * | refactor(nvim): group vim.pack.add() calls | Thomas Vanbesien | 2026-05-29 | 12 | -34/+19 | |
| | | | | | | This is to avoid getting many prompts when launching nvim and installing the packages initially. | |||||
| * | misc(nvim): add user command to (re)initialize folds | Thomas Vanbesien | 2026-05-29 | 1 | -9/+14 | |
| | | | | | | | A user command to reinitialize folds is the best solution. It's better than doing it automatically because if folds are recalculated all the time then when writing code new folds will close on the cursor. | |||||
| * | misc(nvim): add comment about non-bug (invisible fenced code blocks) | Thomas Vanbesien | 2026-05-29 | 1 | -0/+4 | |
| | | ||||||
| * | misc: remove comment | Thomas Vanbesien | 2026-05-29 | 1 | -2/+0 | |
| | | ||||||
| * | misc(nvim): add keymap to close current tabpage | Thomas Vanbesien | 2026-05-29 | 1 | -0/+1 | |
| | | ||||||
| * | fix(nvim): fix SessionExitSave and SessionExitNoSave commands | Thomas Vanbesien | 2026-05-22 | 1 | -5/+4 | |
| | | | | | | | | `SessionExitSave` → Save session and exit, fixed description `SessionExitNoSave` → Exit without saving session, and don't exit if there are unsaved changes. | |||||
| * | misc(nvim): prompt user for action when buffer file is edited outside of nvim | Thomas Vanbesien | 2026-05-22 | 1 | -7/+20 | |
| | | ||||||
| * | misc(nvim): add shortcut to create tabpage | Thomas Vanbesien | 2026-05-22 | 1 | -0/+2 | |
| | | ||||||
| * | refactor(nvim): move winbar option and use vim.opt | Thomas Vanbesien | 2026-05-22 | 1 | -1/+1 | |
| | | ||||||
| * | refactor(nvim): move updatetime option | Thomas Vanbesien | 2026-05-22 | 1 | -1/+1 | |
| | | ||||||
| * | misc(nvim): set tabline fg to yellow | Thomas Vanbesien | 2026-05-22 | 1 | -1/+2 | |
| | | ||||||
| * | refactor(nvim): remove call to winsaveview() when reloading a buffer | Thomas Vanbesien | 2026-05-22 | 1 | -2/+0 | |
| | | | | | The call was redundant, and `winsaveview()` does not save folds. | |||||
| * | misc(nvim): set winbar to show cwd and path | Thomas Vanbesien | 2026-05-22 | 2 | -0/+3 | |
| | | ||||||
| * | misc(nvim): reload buffer when its file changed on disk | Thomas Vanbesien | 2026-05-22 | 2 | -2/+18 | |
| | | | | | | | | | | | | | | Bump 'updatetime' to 1 second because it affects three things: - swap file save frequency - GitGutter signs update frequency - CursorHold and CursorHoldI trigger frequency 100ms is too high of a frequency. Enable focus events in tmux for nvim 'FocusGained' event, Add two event handlers, one for updating the buffer with `checktime`, another for logging a message when doing so. | |||||
| * | misc(nvim): rounded borders and default bg color for floating windows | Thomas Vanbesien | 2026-05-22 | 2 | -2/+1 | |
| | | ||||||
| * | Revert "fix(nvim): correct popup rendering for bullets and LSP docs" | Thomas Vanbesien | 2026-05-22 | 2 | -26/+0 | |
| | | | | | This reverts commit 601bdd23a87c71dac8e4c59474c5915db676190f. | |||||
| * | misc(nvim): GitBlame shows SHA1 and has better matching logic | Thomas Vanbesien | 2026-05-22 | 1 | -1/+6 | |
| | | ||||||
