Log
-
Remove hlmode=combine bug workaround by Caio 4 years ago
-
rust: use treesitter for folding 💬 by Caio 4 years ago
Works well now, but folds are occasially lost- upstream neovim issue 14977
-
rust-analyzer: don't expand async_trait 💬 by Caio 4 years ago
Workaround. Without this, the hover shows the expanded code as signature instead of the cute version.
-
Remove filesystem/path support from completion 💬 by Caio 4 years ago
My ^X^F muscle memory is set in place, the rare times I actually see this extra plugin working is often when I don't want it to.
-
Completion support added on 43b7ae33 by Caio 4 years ago
-
Default color is now a dark, warm zenbones by Caio 4 years ago
-
Custom diagnostic config everywhere, not just for LSP 💬 by Caio 4 years ago
This is the last remaining bit I think
-
Resistance is futile by Caio 4 years ago
-
Add vim-fugitive plugin 💬 by Caio 4 years ago
I only miss `:Gblame` (now `:Git blame`) from it. Every "modern" plugin is too intrusive for my taste, so welcome back trusty old friend.
-
Use cmp plugin for autocomplete by Caio 4 years ago
-
Slightly better support for js/ts/jsx by Caio 4 years ago
-
Use telescope for jumping to def/impl by Caio 4 years ago
-
Diagnostics are not lsp-specific anymore 💬 by Caio 4 years ago
There is a `vim.diagnostic` framework now :tada:
-
Revert "Freeze telescope.nvim until I move to nvim 0.6+" 💬 by Caio 4 years ago
This reverts commit 07f68c8d357ab42869d4bb1a1206809075e2d595.
-
Freeze telescope.nvim until I move to nvim 0.6+ by Caio 4 years ago
-
Use all features by default 💬 by Caio 4 years ago
What I want is an easy way to switch features, even if it must mean a :LspRestart
-
zenflesh is now zenbones with background=dark by Caio 4 years ago
-
Customize zen{bones,flesh} a bit by Caio 4 years ago
-
Run PackerSync automatically when bootstrapping by Caio 4 years ago
-
Replace lexima.vim with nvim-autopairs 💬 by Caio 4 years ago
There's a weird interaction between lexima and `formatoptions+=r` that I haven't been able to figure out the root cause quickly. Essentially: if condition { // commentstring| } ^- Normal typing until the cursor reaches here Pressing <CR> leads to the `r` behaviour of prefixing the line with `&commentstring`, but leaving insert mode leads to this: if condition { // commentstring //} Since I'm not keen on re-learning vimscript for the hudredth time just for fixing this, I just switched to autopairs... Should also make my life easier if I ever follow through with the thought of adding an auto-complete plugin. -
Add zenbones theme by Caio 4 years ago
-
No statusline plugin 💬 by Caio 4 years ago
I can't recall why I started looking for a fancy status line so many years ago- now it looks like it was simply for the prettiness... If I were actually happy with this pretty thing I'd let it stay.
-
Gord takes no options by Caio 4 years ago
-
Use --depth=1 when bootstrapping packer by Caio 4 years ago
-
Use my forked nord, inline some settings by Caio 4 years ago
-
Use LSP for golang by Caio 4 years ago
-
Smart WHAT? by Caio 4 years ago
-
Add mappings to navigate error diagnostics by Caio 4 years ago
-
Add the trusty :Renamer plugin by Caio 4 years ago
-
Move my functions into the "custom" module 💬 by Caio 4 years ago
Now the command namespace is not polluted. So much easier to use namespaces with lua <3