NEOVIM CONFIG

layout

.
├── after
│   └── plugin
│       ├── colors.lua
│       ├── fugitive.lua
│       ├── harpoon.lua
│       ├── lsp.lua
│       ├── lualine.lua
│       ├── nvim-lint.lua
│       ├── telescope.lua
│       ├── treesitter.lua
│       ├── undotree.lua
│       ├── yaml-companion.lua
│       └── zenmode.lua
├── init.lua
├── lua
│   └── scurra
│       ├── colorselect.lua
│       ├── filetype.lua
│       ├── functions.lua
│       ├── init.lua
│       ├── packer.lua
│       ├── remap.lua
│       └── set.lua
├── my_keys.md
└── plugin
    └── packer_compiled.lua

lsp-zero

For the options I've added, I installed the following:

    pipx install cfn-lsp-extra
    pipx install cfn-lint
    pip install "python-lsp-server[yapf]"
    ~~brew install~~ chktex     # LaTeX linter
    ~~brew install~~ checkmake  # Makefile linter
    ~~brew install~~ yamllint   # yaml linter
    ~~brew install~~ hadolint   # Dockerfile linter

TODO

Language Modes

Cloudformation, SaltStack, Jinja2

Miscellaneous

  • Make python-language-server faster...
  • ...

Acknowledgements