neovim configuration using rocks.nvim plugin manager
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

feat(plugins): add `quicker.nvim`

+7 -1
+2 -1
lua/core/options.lua
··· 4 4 vim.opt.diffopt:append("linematch:60") 5 5 vim.o.clipboard = "unnamedplus" 6 6 vim.o.cmdheight = 1 7 - vim.o.cmdwinheight = 10 7 + -- due to stevearc/quicker.nvim#21 issue 8 + vim.o.cmdwinheight = 8 8 9 vim.o.colorcolumn = "80" 9 10 vim.o.completeopt = "menu,menuone,popup" 10 11 if vim.fn.has("nvim-0.11") == 1 then
+1
lua/plugins/quicker.lua
··· 1 + require("quicker").setup()
+4
rocks.toml
··· 116 116 git = "projekt0n/github-nvim-theme" 117 117 rev = "v1.1.2^{}" 118 118 119 + [plugins."quicker.nvim"] 120 + git = "stevearc/quicker.nvim" 121 + rev = "v1.0.0" 122 + 119 123 [config] 120 124 auto_setup = false 121 125