Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/kentlouisetonino/config-neovim-coc
My default neovim config with coc.
https://github.com/kentlouisetonino/config-neovim-coc
coc neovim vim
Last synced: 2 months ago
JSON representation
My default neovim config with coc.
- Host: GitHub
- URL: https://github.com/kentlouisetonino/config-neovim-coc
- Owner: kentlouisetonino
- License: mit
- Created: 2023-04-15T15:26:58.000Z (almost 2 years ago)
- Default Branch: develop
- Last Pushed: 2024-04-01T14:01:41.000Z (10 months ago)
- Last Synced: 2024-04-01T15:26:23.256Z (10 months ago)
- Topics: coc, neovim, vim
- Language: Vim Script
- Homepage:
- Size: 26.4 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
## Description
> - This is my default neovim with config.
![Screenshot from 2023-12-23 19-11-37](https://github.com/kentlouisetonino/config-nvim/assets/69438999/7e8cfd05-8dc7-40c5-898f-2ca4ddce510f)
## Local Setup
> - Setup the git remote repositories.
```bash
# Change mode permission and make it executable.
chmod +x git-push-all# Push changes to all remote repository.
./git-push-all
```> - Run the following commands below.
```plaintext
cd
cd .config/nvim
touch init.vim
```
> - Copy the `init.vim` content.
> - To locate the `coc.nvim` change directory to the following below.
```plaintext
cd ~/.local/share/nvim/plugged/coc.nvim
yarn install
yarn build
```
## Basic Keyboard Commands
> - NerdTree basic commands.```plaintext
m : This bring up the NerdTree Filesystem menu.
a : This allows to create a new file.
d : This allows to delete a file.
mm : This allows renaming a file.
t : Open a new tab.
gt : Switch to next tab.
gT : Switch to previous tab.
```
> - VIM cheat sheet: https://vim.rtorr.com/
> - COC key mappings.
```plaintext
gd : Definition.
gr : References.
Ctrl + o : Go back to previous file.
\ff : Open telescope and find files.
\fg : Open telescope and find a files with a specific word.
Ctrl + t : After opening the telescope, then open the file in new tab.
```