mirror of
https://github.com/nix-community/nixvim.git
synced 2025-06-21 00:25:42 +02:00
nvim-lsp: add bashls language server (#108)
This commit is contained in:
parent
84006ea282
commit
f32627307a
2 changed files with 6 additions and 1 deletions
|
@ -1,7 +1,7 @@
|
||||||
{ pkgs, ... }:
|
{ pkgs, ... }:
|
||||||
{
|
{
|
||||||
programs.nixvim = {
|
programs.nixvim = {
|
||||||
# This just enables NixVim.
|
# This just enables NixVim.
|
||||||
# If all you have is this, then there will be little visible difference
|
# If all you have is this, then there will be little visible difference
|
||||||
# when compared to just installing NeoVim.
|
# when compared to just installing NeoVim.
|
||||||
enable = true;
|
enable = true;
|
||||||
|
|
|
@ -2,6 +2,11 @@
|
||||||
let
|
let
|
||||||
helpers = import ./helpers.nix args;
|
helpers = import ./helpers.nix args;
|
||||||
servers = [
|
servers = [
|
||||||
|
{
|
||||||
|
name = "bashls";
|
||||||
|
description = "Enable bashls, for bash.";
|
||||||
|
packages = [ pkgs.nodePackages.bash-language-server ];
|
||||||
|
}
|
||||||
{
|
{
|
||||||
name = "clangd";
|
name = "clangd";
|
||||||
description = "Enable clangd LSP, for C/C++.";
|
description = "Enable clangd LSP, for C/C++.";
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue