Skip to content

Latest commit

 

History

History
59 lines (40 loc) · 1.08 KB

README.md

File metadata and controls

59 lines (40 loc) · 1.08 KB

Configuring EASIFEM

Config

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.

Using snippets in neovim

Clone this repository by using one of the ways given below:

HTTPS:

https://github.com/easifem/snippets.git

SSH:

git@github.com: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"
},

Fish scripts

You can read about fish scripts installation and usage here