[nvim noob]: looking for ready-made nixvim config snippets helping migration from vscode #609
-
I'm a long-term NixOS user and also familiar with vanilla vim but using vscode as my main IDE for multiple languages and also occasionally relying on extensions like ThunderClient (similar to Postman) and DatabaseClient. (I have 68 extensions installed of which I frequently use about 15~20, including Being intrigued by What I'm really missing now is references to good starter configs in In other words, I'm looking for a realistic "QuickStart" path because atm I can't afford the time to dive deep yet again... |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
Hi ! To answer your questions:
Nixvim is more the natural layer needed to configure neovim through a nix module than an opinionated neovim distribution. As for configuration examples, you can look at mine for inspiration: https://github.com/GaetanLepage/dotfiles/tree/master/home/modules/tui/neovim Feel free to join our matrix space to quickly get answers from maintainers and users :) |
Beta Was this translation helpful? Give feedback.
Hi !
Welcome to Nixvim. I indeed think that your use case fits very well into the scope of Nixvim.
To answer your questions:
plugins.lsp.servers.pylsp.enable = true
, then we would install thepylsp
language server (fromnixpkgs
). You still have the liberty to disable that. But apart from this, we take no decisions for you. When you install a plugin, we do not c…