Garrett

Results 20 issues of Garrett

Using coq, sometimes when typing or exiting insert mode in a TypeScript file Neovim freezes for 1-3 seconds, but only when tsserver is in my LSP config: ```lua local nvim_lsp...

I configure each of the plugins I use in its own file, and load the module in packer, like this: ```lua -- packer.lua require("packer").startup { function(use) use { require("config.telescope"), }...

enhancement
packer-compile
v1

I've removed write permissions for my home directory to prevent it from getting littered with dot files. It took me a while to figure out that prettierd was trying to...

bug

The docs say the notify function takes 1-3 arguments (`msg`, `level` and `opts`), but [lua-language-server](https://github.com/sumneko/lua-language-server) is giving me a warning and says the function only takes 2 arguments: ``` NVIM...

### Description Is snippy expected to fill empty tab stops with placeholder text? Using lua-language-server, most of the snippets already have placeholder text at the tab stops, but the `function...

enhancement

If I assign a global option to either a local (buffer) option, or just a variable, I get warning "Undefined field": NVIM v0.8.1 Build type: Release LuaJIT 2.1.0-beta3 Compiled by...

When triggering omnicompletion with a language server that doesn't support completion a helpful message is displayed: ``` method textDocument/completion is not supported by any of the servers registered for the...

This adds some style options, making the use of bold and italic text configurable for code syntax. Though I don't love some of the names I came up with for...

Is there an easy way to disable all uses of bold text? Edit: I should clarify that I mean for code syntax.

In the chapter `Intro to property based tests` we use the `testing/quick` package to create a new test, `TestPropertiesOfConversion`. After creating the test: > Try running it; your computer may...