neovim
neovim copied to clipboard
Neovim, Conjure and LSP for Clojure development using Fennel configuration
Multiple cursors is a visual way to change multiple lines or matching patterns concurently. There are many ways to achieve similar results with vim-style editing which are useful to learn...
How to get the filename or full path of a file and then past it into a buffer #### Use cases - mkdocs navigation #### Normal mode `" %` is...
Write a guide on using Conjure for full stack projects (Clojure & ClojureScript) #### Reference https://github.com/Olical/conjure/issues/474
Contribute documentation or suggest link to Practicalli Neovim book Prerequisite: make the [Practicallin Neovim - Neogit](https://practical.li/neovim/source-control/neogit/) page more comprehensive, covering - Initialise Repository (confirmation screenshot) - Git Status buffer layout...
text-objects are used in visual or operator-pending mode. w for instance stands for the text-object word. When you are in operator pending mode, for instance right after pressing d for...
Neovim built-in substitution command `:%s` command substitutes text in the current buffer, e.g substitute the word have by had ``` :%s/have/had/g` ``` The `g` modifier replaced all occurrences on the...
Configure and document spell checking with Neovim http://neovim.io/doc/user/spell.html 1. turn on with ``` :setlocal spell spelllang=en ``` mapped that command to Ts (toggle spell check) > map some mnemonic keys,...
tpope/projectionist https://github.com/tpope/vim-projectionist Suggested binding: `SPC p a` for project alternate Swap between src and test with a simple binding Per project configuration config using projections.json file in root of project...
Include more information on how to install Fonts, especially Nerd fonts. This information may be specific to the terminal app used. Use terminal specific content in Practicalli Engineering Playbook. Kitty...
`shift` + `enter` on a file in neo-tree will open the file using the associated system viewer. e.g. a `.png` file will open in the operating system image viewer