Updated Home (markdown)

siduck76 2021-06-16 15:59:53 +05:30
parent 08b60d9257
commit 181846a202

21
Home.md

@ -49,27 +49,6 @@ git clone https://github.com/wbthomason/packer.nvim\
lspconfig/blob/master/CONFIG.md
<br><br>
```
-- Emmet-ls lspconfig ( put this at last in nvim-lspconfig.lua file)
local nvim_lsp = require "lspconfig"
local configs = require "lspconfig/configs"
configs.emmet_ls = {
default_config = {
cmd = {"emmet-ls", "--stdio"},
filetypes = {"html", "css"},
root_dir = function()
return vim.loop.cwd()
end,
settings = {}
}
}
nvim_lsp.emmet_ls.setup {
on_attach = on_attach
}
```
## - Code Formating && Pretifying
- NvChad uses neoformat , install the formatters for the language you want from [here](https://github.com/sbdchd/neoformat).