You've already forked neovim_config
Compare commits
2 Commits
7e371697d9
...
a7c3dcf6c3
Author | SHA1 | Date | |
---|---|---|---|
a7c3dcf6c3 | |||
ac112f878c |
@@ -8,12 +8,12 @@ neovim has to be version 0.10.0 or later.
|
|||||||
|
|
||||||
Denpenting on your OS neovim and the requirements can be installed on Rhel or Fedora like this
|
Denpenting on your OS neovim and the requirements can be installed on Rhel or Fedora like this
|
||||||
```
|
```
|
||||||
sudo dnf install neovim npm ansible ansible-lint ripgrep
|
sudo dnf install neovim npm ansible ansible-lint ripgrep ShellCheck
|
||||||
```
|
```
|
||||||
|
|
||||||
If you are using Ubuntu it can be done like this
|
If you are using Ubuntu it can be done like this
|
||||||
```
|
```
|
||||||
sudo apt install neovim npm ansible ansible-lint ripgrep
|
sudo apt install neovim npm ansible ansible-lint ripgrep shellcheck
|
||||||
```
|
```
|
||||||
|
|
||||||
How to use the plugins and configuration
|
How to use the plugins and configuration
|
||||||
|
@@ -30,6 +30,7 @@ return {
|
|||||||
"ansiblels",
|
"ansiblels",
|
||||||
"terraformls",
|
"terraformls",
|
||||||
"pylsp",
|
"pylsp",
|
||||||
|
"bashls",
|
||||||
},
|
},
|
||||||
handlers = {
|
handlers = {
|
||||||
function(server_name) -- default handler (optional)
|
function(server_name) -- default handler (optional)
|
||||||
@@ -80,6 +81,14 @@ return {
|
|||||||
})
|
})
|
||||||
end,
|
end,
|
||||||
|
|
||||||
|
["bashls"] = function ()
|
||||||
|
local lspconfig = require("lspconfig")
|
||||||
|
lspconfig["bashls"].setup({
|
||||||
|
cmd = { "bash-language-server", "start" },
|
||||||
|
filetypes = { 'bash', 'sh' },
|
||||||
|
single_file_support = false,
|
||||||
|
})
|
||||||
|
end,
|
||||||
|
|
||||||
["lua_ls"] = function()
|
["lua_ls"] = function()
|
||||||
local lspconfig = require("lspconfig")
|
local lspconfig = require("lspconfig")
|
||||||
|
Reference in New Issue
Block a user