Skip to content

Commit

Permalink
chore(content/til): add "2024_08_15-disable_cmp_on_lunarvim"
Browse files Browse the repository at this point in the history
  • Loading branch information
mateusfg7 committed Aug 15, 2024
1 parent b32688f commit 66e5879
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions content/til/2024_08_15-disable_cmp_on_lunarvim.mdx
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
---
title: 'Disable CMP on LunarVim'
description: 'How to disable completitions on specific LunarVim session'
date: '2024-08-15'
tags: [vim,lunarvim,cmp,ide,completitions]
---

You can disable `cmp` with inline Lua commando, invoked by `:lua` command.

```lua
:lua require('cmp').setup({ enabled = false })
```

0 comments on commit 66e5879

Please sign in to comment.