Skip to content

Latest commit

 

History

History
31 lines (23 loc) · 463 Bytes

README.md

File metadata and controls

31 lines (23 loc) · 463 Bytes

Neovim

Depends

brew install neovim;
brew install rg;  # ripgrep
brew tap homebrew/cask-fonts && brew install --cask font-hack-nerd-font; # Nerd Font
brew install lazygit; # Git UI

LSP

Python

Depends

npm install -g pyright; # global
poetry add --group lsp 'python-lsp-server[all]'; # local
poetry add --group lsp pylsp-mypy; # local

pyproject.toml

[tool.pylsp-mypy]
enabled = true
live_mode = true
strict = false