This repository contains the markdown snippets for writing documentation of easifem. The snippets are json
files and they should work with the visual studio code and neovim.
Clone this repository by using one of the ways given below:
HTTPS:
https://github.com/easifem/snippets.git
SSH:
[email protected]:easifem/snippets.git
GitHub CLI:
gh repo clone easifem/snippets
Step-2: Move these snippets to neovim
config folder.
cd snippets
cp easifem-fortran.json ~/.config/nvim/snippets/easifem-fortran.json
cp easifem-markdown.json ~/.config/nvim/snippets/easifem-markdown.json
Step-3: Add config files to package.json
cd ~/.config/nvim/snippets/
Open the package.json
file and add the following.
{
"language": ["markdown"],
"path": "./easifem-markdown.json"
},
{
"language": ["fortran", "markdown"],
"path": "./easifem-fortran.json"
},
You can read about fish scripts installation and usage here