Compare commits
11 Commits
04b8487bab
...
main
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
3522c28620 | ||
|
|
0fc8a32863 | ||
|
|
5f37db4f8b | ||
|
|
a730958ba9 | ||
|
|
16ad70f2ce | ||
|
|
e9fc5490ac | ||
|
|
51bb7213d0 | ||
|
|
8006bc52e8 | ||
|
|
2f9cbf29fa | ||
|
|
6720c8c765 | ||
|
|
301a265080 |
@@ -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
|
||||||
|
|||||||
@@ -1,59 +0,0 @@
|
|||||||
AllCops:
|
|
||||||
TargetRubyVersion: 3.4
|
|
||||||
NewCops: enable
|
|
||||||
Exclude:
|
|
||||||
- 'db/schema.rb'
|
|
||||||
- 'bin/**/*'
|
|
||||||
- 'node_modules/**/*'
|
|
||||||
- 'vendor/**/*'
|
|
||||||
|
|
||||||
Layout/LineLength:
|
|
||||||
Max: 100
|
|
||||||
|
|
||||||
Layout/IndentationWidth:
|
|
||||||
Width: 2
|
|
||||||
|
|
||||||
Layout/EmptyLinesAroundClassBody:
|
|
||||||
Enabled: true
|
|
||||||
|
|
||||||
Layout/EmptyLinesAroundModuleBody:
|
|
||||||
Enabled: true
|
|
||||||
|
|
||||||
Naming/VariableName:
|
|
||||||
EnforcedStyle: snake_case
|
|
||||||
|
|
||||||
Naming/MethodName:
|
|
||||||
EnforcedStyle: snake_case
|
|
||||||
|
|
||||||
Naming/ClassAndModuleCamelCase:
|
|
||||||
Enabled: true
|
|
||||||
|
|
||||||
Style/Documentation:
|
|
||||||
Enabled: false
|
|
||||||
|
|
||||||
Style/RedundantBegin:
|
|
||||||
Enabled: true
|
|
||||||
|
|
||||||
Style/GuardClause:
|
|
||||||
Enabled: true
|
|
||||||
|
|
||||||
Style/StringLiterals:
|
|
||||||
EnforcedStyle: double_quotes
|
|
||||||
|
|
||||||
Style/TrailingCommaInArguments:
|
|
||||||
EnforcedStyleForMultiline: comma
|
|
||||||
|
|
||||||
Style/OptionalBooleanParameter:
|
|
||||||
Enabled: false
|
|
||||||
|
|
||||||
Metrics/MethodLength:
|
|
||||||
Max: 25
|
|
||||||
|
|
||||||
Metrics/ClassLength:
|
|
||||||
Max: 200
|
|
||||||
|
|
||||||
Metrics/BlockLength:
|
|
||||||
Max: 25
|
|
||||||
|
|
||||||
Metrics/AbcSize:
|
|
||||||
Max: 15
|
|
||||||
@@ -20,7 +20,7 @@ config.window_padding = {
|
|||||||
bottom = "0cell",
|
bottom = "0cell",
|
||||||
}
|
}
|
||||||
-- pane
|
-- pane
|
||||||
config.colors = { split = '#E858F5' }
|
config.colors = { split = "#E858F5" }
|
||||||
config.inactive_pane_hsb = {
|
config.inactive_pane_hsb = {
|
||||||
saturation = 0.7,
|
saturation = 0.7,
|
||||||
brightness = 0.8,
|
brightness = 0.8,
|
||||||
|
|||||||
@@ -35,6 +35,6 @@
|
|||||||
"tokyonight.nvim": { "branch": "main", "commit": "5da1b76e64daf4c5d410f06bcb6b9cb640da7dfd" },
|
"tokyonight.nvim": { "branch": "main", "commit": "5da1b76e64daf4c5d410f06bcb6b9cb640da7dfd" },
|
||||||
"trouble.nvim": { "branch": "main", "commit": "bd67efe408d4816e25e8491cc5ad4088e708a69a" },
|
"trouble.nvim": { "branch": "main", "commit": "bd67efe408d4816e25e8491cc5ad4088e708a69a" },
|
||||||
"ts-comments.nvim": { "branch": "main", "commit": "123a9fb12e7229342f807ec9e6de478b1102b041" },
|
"ts-comments.nvim": { "branch": "main", "commit": "123a9fb12e7229342f807ec9e6de478b1102b041" },
|
||||||
"venv-selector.nvim": { "branch": "main", "commit": "58bae72c84b9f7f864c879ec1896e384296f9ffb" },
|
"venv-selector.nvim": { "branch": "main", "commit": "321dbbbfc3f1d25dad24c289e853cacd0666f77f" },
|
||||||
"which-key.nvim": { "branch": "main", "commit": "3aab2147e74890957785941f0c1ad87d0a44c15a" }
|
"which-key.nvim": { "branch": "main", "commit": "3aab2147e74890957785941f0c1ad87d0a44c15a" }
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,11 +1,3 @@
|
|||||||
-- Autocmds are automatically loaded on the VeryLazy event
|
-- Autocmds are automatically loaded on the VeryLazy event
|
||||||
-- Default autocmds that are always set: https://github.com/LazyVim/LazyVim/blob/main/lua/lazyvim/config/autocmds.lua
|
-- Default autocmds that are always set: https://github.com/LazyVim/LazyVim/blob/main/lua/lazyvim/config/autocmds.lua
|
||||||
-- Add any additional autocmds here
|
-- Add any additional autocmds here
|
||||||
vim.api.nvim_create_autocmd("FileType", {
|
|
||||||
pattern = { "lua" },
|
|
||||||
callback = function()
|
|
||||||
vim.bo.tabstop = 2
|
|
||||||
vim.bo.softtabstop = 2
|
|
||||||
vim.bo.shiftwidth = 2
|
|
||||||
end,
|
|
||||||
})
|
|
||||||
|
|||||||
@@ -23,6 +23,7 @@ require("lazy").setup({
|
|||||||
{ import = "plugins.langs.ruby" },
|
{ import = "plugins.langs.ruby" },
|
||||||
{ import = "plugins.langs.biome" },
|
{ import = "plugins.langs.biome" },
|
||||||
{ import = "plugins.langs.xml" },
|
{ import = "plugins.langs.xml" },
|
||||||
|
{ import = "plugins.langs.lua" },
|
||||||
},
|
},
|
||||||
defaults = {
|
defaults = {
|
||||||
-- By default, only LazyVim plugins will be lazy-loaded. Your custom plugins will load during startup.
|
-- By default, only LazyVim plugins will be lazy-loaded. Your custom plugins will load during startup.
|
||||||
|
|||||||
@@ -27,8 +27,6 @@ local layouts = {
|
|||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
vs_search = {
|
vs_search = {
|
||||||
preview = false,
|
preview = false,
|
||||||
layout = {
|
layout = {
|
||||||
|
|||||||
@@ -2,7 +2,7 @@ return {
|
|||||||
"saghen/blink.cmp",
|
"saghen/blink.cmp",
|
||||||
opts = {
|
opts = {
|
||||||
keymap = {
|
keymap = {
|
||||||
["<Tab>"] = { "select_and_accept", 'fallback' },
|
["<Tab>"] = { "select_and_accept", "fallback" },
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -12,7 +12,8 @@ return {
|
|||||||
css = { "biome" },
|
css = { "biome" },
|
||||||
javascript = { "biome" },
|
javascript = { "biome" },
|
||||||
sql = { "pg_format" },
|
sql = { "pg_format" },
|
||||||
yaml = {"hydra_lsp"}
|
yaml = { "hydra_lsp" },
|
||||||
|
lua = { "stylua" },
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
dependencies = {
|
dependencies = {
|
||||||
|
|||||||
@@ -44,7 +44,7 @@ return {
|
|||||||
gopls = function(_, opts)
|
gopls = function(_, opts)
|
||||||
-- workaround for gopls not supporting semanticTokensProvider
|
-- workaround for gopls not supporting semanticTokensProvider
|
||||||
-- https://github.com/golang/go/issues/54531#issuecomment-1464982242
|
-- https://github.com/golang/go/issues/54531#issuecomment-1464982242
|
||||||
LazyVim.lsp.on_attach(function(client, _)
|
Snacks.util.lsp.on({ name = "gopls" }, function(_, client)
|
||||||
if not client.server_capabilities.semanticTokensProvider then
|
if not client.server_capabilities.semanticTokensProvider then
|
||||||
local semantic = client.config.capabilities.textDocument.semanticTokens
|
local semantic = client.config.capabilities.textDocument.semanticTokens
|
||||||
client.server_capabilities.semanticTokensProvider = {
|
client.server_capabilities.semanticTokensProvider = {
|
||||||
@@ -56,7 +56,7 @@ return {
|
|||||||
range = true,
|
range = true,
|
||||||
}
|
}
|
||||||
end
|
end
|
||||||
end, "gopls")
|
end)
|
||||||
-- end workaround
|
-- end workaround
|
||||||
end,
|
end,
|
||||||
},
|
},
|
||||||
|
|||||||
43
lua/plugins/langs/lua/nvim-lspconfig.lua
Normal file
43
lua/plugins/langs/lua/nvim-lspconfig.lua
Normal file
@@ -0,0 +1,43 @@
|
|||||||
|
return {
|
||||||
|
"neovim/nvim-lspconfig",
|
||||||
|
opts = {
|
||||||
|
servers = {
|
||||||
|
lua_ls = {
|
||||||
|
settings = {
|
||||||
|
Lua = {
|
||||||
|
runtime = {
|
||||||
|
version = "LuaJIT",
|
||||||
|
},
|
||||||
|
format = {
|
||||||
|
enable = true,
|
||||||
|
defaultConfig = {
|
||||||
|
indent_style = "space",
|
||||||
|
indent_size = "2",
|
||||||
|
max_line_length = "88",
|
||||||
|
},
|
||||||
|
},
|
||||||
|
diagnostics = {
|
||||||
|
globals = { "vim" },
|
||||||
|
},
|
||||||
|
workspace = {
|
||||||
|
library = {
|
||||||
|
vim.env.VIMRUNTIME,
|
||||||
|
},
|
||||||
|
checkThirdParty = false,
|
||||||
|
},
|
||||||
|
telemetry = {
|
||||||
|
enable = false,
|
||||||
|
},
|
||||||
|
},
|
||||||
|
},
|
||||||
|
},
|
||||||
|
},
|
||||||
|
setup = {
|
||||||
|
lua_ls = function()
|
||||||
|
require("snacks").util.lsp.on({ name = "lua_ls" }, function(_, client)
|
||||||
|
client.server_capabilities.hoverProvider = true
|
||||||
|
end)
|
||||||
|
end,
|
||||||
|
},
|
||||||
|
},
|
||||||
|
}
|
||||||
@@ -15,10 +15,7 @@ return {
|
|||||||
dapui.setup(opts)
|
dapui.setup(opts)
|
||||||
-- icons
|
-- icons
|
||||||
|
|
||||||
vim.fn.sign_define(
|
vim.fn.sign_define("DapBreakpoint", { text = "🔴", texthl = "DiagnosticError", linehl = "", numhl = "" })
|
||||||
"DapBreakpoint",
|
|
||||||
{ text = "🔴", texthl = "DiagnosticError", linehl = "", numhl = "" }
|
|
||||||
)
|
|
||||||
|
|
||||||
-- Auto open/close UI
|
-- Auto open/close UI
|
||||||
dap.listeners.after.event_initialized["dapui_config"] = function()
|
dap.listeners.after.event_initialized["dapui_config"] = function()
|
||||||
|
|||||||
@@ -41,11 +41,17 @@ return {
|
|||||||
},
|
},
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
-- setup = {
|
||||||
|
-- basedpyright = function()
|
||||||
|
-- LazyVim.lsp.on_attach(function(client, _)
|
||||||
|
-- client.server_capabilities.hoverProvider = true
|
||||||
|
-- end, "basedpyright")
|
||||||
|
-- },
|
||||||
setup = {
|
setup = {
|
||||||
basedpyright = function()
|
basedpyright = function()
|
||||||
LazyVim.lsp.on_attach(function(client, _)
|
require("snacks").util.lsp.on({ name = "basedpyright" }, function(_, client)
|
||||||
client.server_capabilities.hoverProvider = true
|
client.server_capabilities.hoverProvider = true
|
||||||
end, "basedpyright")
|
end)
|
||||||
end,
|
end,
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
|||||||
@@ -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",
|
||||||
|
|||||||
@@ -20,7 +20,7 @@ return {
|
|||||||
"shfmt",
|
"shfmt",
|
||||||
-- go
|
-- go
|
||||||
"goimports",
|
"goimports",
|
||||||
"gofumpt"
|
"gofumpt",
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -52,7 +52,7 @@ return {
|
|||||||
explorer = { cycle = false, layout = { preset = "sidebar" } },
|
explorer = { cycle = false, layout = { preset = "sidebar" } },
|
||||||
buffers = { layout = { preset = "vs_search" } },
|
buffers = { layout = { preset = "vs_search" } },
|
||||||
lines = { main = { current = false }, layout = { preset = "vs_search" } },
|
lines = { main = { current = false }, layout = { preset = "vs_search" } },
|
||||||
diagnostics = { layout = { preset = "vs_search" } },
|
diagnostics = { layout = { preset = "vs_search" }, hidden=true },
|
||||||
diagnostics_buffer = { layout = { preset = "vs_search" } },
|
diagnostics_buffer = { layout = { preset = "vs_search" } },
|
||||||
git_status = { ignored = false },
|
git_status = { ignored = false },
|
||||||
grep = { ignored = false, hidden = false, exclude = { "*.po", " *.pot" } },
|
grep = { ignored = false, hidden = false, exclude = { "*.po", " *.pot" } },
|
||||||
|
|||||||
@@ -4,11 +4,13 @@ return {
|
|||||||
opts = {
|
opts = {
|
||||||
spec = {
|
spec = {
|
||||||
{ "<leader>cL", "<cmd>LspRestart<CR>", icon = "" },
|
{ "<leader>cL", "<cmd>LspRestart<CR>", icon = "" },
|
||||||
|
{ "<leader>`", hidden = true },
|
||||||
|
{ "<leader>-", hidden = true },
|
||||||
},
|
},
|
||||||
win = {
|
win = {
|
||||||
no_overlap = false,
|
no_overlap = false,
|
||||||
},
|
},
|
||||||
preset = 'modern'
|
preset = "modern",
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -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