Skip to content

Neovim Configuration

Posted on:December 21, 2021 at 09:30 AM

Pre-installation:

Pre-Installation

Installation

Plugins

Airline

VimTex

CoC

CoC Completion

CoC Linting

CoC Formatting

coc-settings.json

{
  "python.jediEnabled": false,
  "python.hideInterpreterName": true,
  "python.analysis.diagnosticEnabled": true,
  "python.linting.enabled": true,
  "python.linting.pylintEnabled": false,
  "python.linting.flake8Enabled": true,
  "python.formatting.provider": "black",
  "python.formatting.blackPath": "/Users/rnash/.pyenv/shims/black",
  "python.formatting.blackArgs": ["--line-length", "90"],
  "coc.preferences.formatOnType": true,
  "coc.preferences.formatOnSaveFiletypes": ["python"]
}

Syntax Highlighting

Notes