Compare commits
4 Commits
8006bc52e8
...
a730958ba9
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
a730958ba9 | ||
|
|
16ad70f2ce | ||
|
|
e9fc5490ac | ||
|
|
51bb7213d0 |
@@ -1,4 +1,7 @@
|
|||||||
# 💤 LazyVim Config
|
## [Gitea](https://gitea.routinedevelopment.ca/DaveanandMannie/lazy_config)
|
||||||
|
## [Github mirror](https://github.com/DaveanandMannie/my_lazy_config)
|
||||||
|
|
||||||
|
# 💤 LazyVim Config (out of sync)
|
||||||
|
|
||||||
This is my personal **LazyVim** configuration, designed to run seamlessly on both
|
This is my personal **LazyVim** configuration, designed to run seamlessly on both
|
||||||
**WSL (Windows)** and **bare-metal Linux** environments. It also integrates
|
**WSL (Windows)** and **bare-metal Linux** environments. It also integrates
|
||||||
|
|||||||
@@ -4,9 +4,17 @@ return {
|
|||||||
servers = {
|
servers = {
|
||||||
ruby_lsp = {
|
ruby_lsp = {
|
||||||
mason = false,
|
mason = false,
|
||||||
cmd = { os.getenv("HOME") .. "/.rbenv/shims/ruby-lsp" },
|
|
||||||
single_file_support = false,
|
single_file_support = false,
|
||||||
root_partern = { ".git" },
|
-- cmd = { os.getenv("HOME") .. "/.rbenv/shims/ruby-lsp" },
|
||||||
|
init_options = { enabledFeatures = { formatter = "none", linters = {} } },
|
||||||
|
settings = {
|
||||||
|
ruby = {
|
||||||
|
diagnostics = {
|
||||||
|
rubocop = false,
|
||||||
|
},
|
||||||
|
},
|
||||||
|
},
|
||||||
|
formatter = false,
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
|||||||
@@ -1,3 +1,27 @@
|
|||||||
|
-- return {
|
||||||
|
-- "neovim/nvim-lspconfig",
|
||||||
|
-- opts = {
|
||||||
|
-- servers = {
|
||||||
|
-- lemminx = {
|
||||||
|
-- init_options = {
|
||||||
|
-- settings = {
|
||||||
|
-- xml = {
|
||||||
|
-- format = {
|
||||||
|
-- enabled = true,
|
||||||
|
-- splitAttributes = false,
|
||||||
|
-- },
|
||||||
|
-- validation = {
|
||||||
|
-- noGrammar = "ignore",
|
||||||
|
-- },
|
||||||
|
-- },
|
||||||
|
-- },
|
||||||
|
-- },
|
||||||
|
-- },
|
||||||
|
-- },
|
||||||
|
-- },
|
||||||
|
-- }
|
||||||
|
--
|
||||||
|
|
||||||
return {
|
return {
|
||||||
"neovim/nvim-lspconfig",
|
"neovim/nvim-lspconfig",
|
||||||
opts = {
|
opts = {
|
||||||
@@ -8,7 +32,17 @@ return {
|
|||||||
xml = {
|
xml = {
|
||||||
format = {
|
format = {
|
||||||
enabled = true,
|
enabled = true,
|
||||||
splitAttributes = false,
|
enforceQuoteStyle = "preferred",
|
||||||
|
maxLineWidth = 140,
|
||||||
|
splitAttributes = "preserve",
|
||||||
|
preserveAttributeLineBreaks = true,
|
||||||
|
-- respect new lines
|
||||||
|
preservedNewlines = 2,
|
||||||
|
joinContentLines = false,
|
||||||
|
experimental = true,
|
||||||
|
},
|
||||||
|
preferences = {
|
||||||
|
quoteStyle = "double",
|
||||||
},
|
},
|
||||||
validation = {
|
validation = {
|
||||||
noGrammar = "ignore",
|
noGrammar = "ignore",
|
||||||
|
|||||||
@@ -15,7 +15,6 @@ if grep -qEi "(Microsoft|WSL)" /proc/version &> /dev/null; then
|
|||||||
else
|
else
|
||||||
alias wezterm='wezterm' # Or point to native binary if needed
|
alias wezterm='wezterm' # Or point to native binary if needed
|
||||||
fi
|
fi
|
||||||
alias docker='sudo docker'
|
|
||||||
alias lg='lazygit'
|
alias lg='lazygit'
|
||||||
# [Odoo]
|
# [Odoo]
|
||||||
alias erp-dev='cd ~/workspace/pg/erp/'
|
alias erp-dev='cd ~/workspace/pg/erp/'
|
||||||
|
|||||||
Reference in New Issue
Block a user