]> git.rmz.io Git - dotfiles.git/blob - nvim/lua/plugins/lang/nix.lua
lazyvim: absorb all langs
[dotfiles.git] / nvim / lua / plugins / lang / nix.lua
1 return {
2 { "nvim-treesitter/nvim-treesitter",
3 opts = { ensure_installed = { "nix" } },
4 },
5 { "neovim/nvim-lspconfig",
6 opts = {
7 servers = {
8 -- nil_ls = {}, -- FIXME: this causes big CPU usage when tried to be installed and eventually just fails
9 },
10 },
11 },
12 { "stevearc/conform.nvim",
13 opts = {
14 formatters_by_ft = {
15 nix = { "nixfmt" },
16 },
17 },
18 },
19 }