Skip to content

Commit

Permalink
fix(nvim): disable lua codelens
Browse files Browse the repository at this point in the history
  • Loading branch information
fredrikaverpil committed Dec 14, 2024
1 parent 981c509 commit 1f02597
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions nvim-fredrik/lua/fredrik/lang/lua.lua
Original file line number Diff line number Diff line change
Expand Up @@ -59,16 +59,16 @@ return {
-- "LazyVim",

-- Only load the lazyvim library when the `LazyVim` global is found
{ path = "LazyVim", words = { "LazyVim" } },
{ path = "LazyVim", words = { "LazyVim" } },

-- Load the wezterm types when the `wezterm` module is required
-- Needs `justinsgithub/wezterm-types` to be installed
{ path = "wezterm-types", mods = { "wezterm" } },
{ path = "wezterm-types", mods = { "wezterm" } },
},
},
},
{ "Bilal2453/luvit-meta", lazy = true }, -- optional `vim.uv` typings
{ -- optional completion source for require statements and module annotations
{ -- optional completion source for require statements and module annotations
"hrsh7th/nvim-cmp",
opts = function(_, opts)
opts.sources = opts.sources or {}
Expand All @@ -93,7 +93,7 @@ return {
checkThirdParty = false,
},
codeLens = {
enable = true,
enable = false, -- causes annoying flickering
},
completion = {
callSnippet = "Replace",
Expand Down

0 comments on commit 1f02597

Please sign in to comment.