mirror of
https://codeberg.org/leana8959/.files.git
synced 2025-12-06 06:39:14 +00:00
nix: refactor neovim presets into modules
This commit is contained in:
parent
e1c2e28442
commit
ce85adc9f6
3 changed files with 32 additions and 34 deletions
19
nix/homeModules/extra/neovim-moreLangServers.nix
Normal file
19
nix/homeModules/extra/neovim-moreLangServers.nix
Normal file
|
|
@ -0,0 +1,19 @@
|
|||
{ pkgs, ... }:
|
||||
|
||||
{
|
||||
programs.neovim.extraPackages = [
|
||||
# lua
|
||||
pkgs.lua-language-server
|
||||
pkgs.stylua
|
||||
|
||||
pkgs.nil # nix
|
||||
pkgs.yaml-language-server # yaml
|
||||
|
||||
pkgs.nodePackages.pyright # python
|
||||
|
||||
pkgs.marksman # markdown
|
||||
pkgs.taplo # toml
|
||||
pkgs.lemminx # xml
|
||||
# pkgs.texlab # latex
|
||||
];
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue