generated from mateusfg7/nextjs-setup
-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
101 additions
and
8,824 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 command, invoked by `:lua` command. | ||
|
||
```lua | ||
:lua require('cmp').setup({ enabled = false }) | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
--- | ||
title: 'Edit multiple line on Vim' | ||
description: 'How to edit multiple lines at once on vim/neovim/lunarvim' | ||
date: '2024-08-22' | ||
tags: [vim,lunarvim,neovim,trick,shortcut,ide,editor,code] | ||
--- | ||
|
||
For edit multiple lines, click <kbd>CTRL</kbd>+<kbd>V</kbd> for init block selection. Click <kbd>J</kbd> or <kbd>K</kbd> for select the lines, or use arrows up/down. | ||
|
||
Now with lines selected, press <kbd>SHIFT</kbd>+<kbd>I</kbd> for insert on all lines, or <kbd>SHIFT</kbd>+<kbd>A</kbd> for insert on the end of all lines. | ||
|
||
**ref:** https://vimtricks.com/p/edit-multiple-lines-at-once-in-vim/ |
Oops, something went wrong.