mirror of
https://github.com/pojokcodeid/nvim-lazy.git
synced 2025-06-28 19:50:05 +02:00
add: update patch plugins
This commit is contained in:
parent
2727f2850c
commit
a3bf20286d
7 changed files with 49 additions and 27 deletions
|
@ -11,7 +11,7 @@
|
|||
-- catppuccin, catppuccin-latte, catppuccin-frappe, catppuccin-macchiato, catppuccin-mocha
|
||||
-- dracula
|
||||
-- nightfox, dayfox, dawnfox, duskfox, nordfox, terafox, carbonfox
|
||||
vim.g.pcode_colorscheme = "tokyonight-storm"
|
||||
vim.g.pcode_colorscheme = "onedark"
|
||||
|
||||
-- custom transparent mode
|
||||
-- only support
|
||||
|
|
|
@ -348,16 +348,17 @@ return {
|
|||
term_colors = true,
|
||||
style = onedark_style,
|
||||
colors = {
|
||||
green = "#99c379",
|
||||
gray = "#8094b4",
|
||||
bg0 = "#1e222a",
|
||||
green = "#98c379",
|
||||
gray = "#abb2bf",
|
||||
red = "#e06c75",
|
||||
purple = "#c678dd",
|
||||
yellow = "#e5c07a",
|
||||
yellow = "#e5c07b",
|
||||
orange = "#d19a66",
|
||||
blue = "#61afef",
|
||||
cyan = "#56b6c2",
|
||||
bg_d = "$bg",
|
||||
bg1 = "#282c34",
|
||||
bg1 = "#1e222a",
|
||||
},
|
||||
code_style = {
|
||||
comments = "italic",
|
||||
|
@ -378,8 +379,8 @@ return {
|
|||
["@tag.delimiter"] = { fg = "$gray" },
|
||||
["@tag.html"] = { fg = "$red" },
|
||||
["@tag.attribute"] = { fg = "$orange", fmt = "italic" },
|
||||
["@tag.javascript"] = { fg = "$yellow" },
|
||||
["@constructor.javascript"] = { fg = "$yellow" },
|
||||
["@tag.javascript"] = { fg = "$red" },
|
||||
["@constructor.javascript"] = { fg = "$red" },
|
||||
["@tag.tsx"] = { fg = "$yellow" },
|
||||
["@constructor.tsx"] = { fg = "$yellow" },
|
||||
-- NvimTreeFolderIcon = { fg = "#FCC76A" },
|
||||
|
@ -474,8 +475,8 @@ return {
|
|||
comments = "italic", -- Value is any valid attr-list value `:help attr-list`
|
||||
conditionals = "italic",
|
||||
constants = "NONE",
|
||||
functions = "italic",
|
||||
keywords = "bold,italic",
|
||||
functions = "NONE",
|
||||
keywords = "italic",
|
||||
numbers = "NONE",
|
||||
operators = "NONE",
|
||||
strings = "NONE",
|
||||
|
|
|
@ -1,13 +1,20 @@
|
|||
return {
|
||||
cmd = { "vscode-eslint-language-server", "--stdio" }, -- add file type support
|
||||
filetypes = {
|
||||
"javascript",
|
||||
"javascriptreact",
|
||||
"javascript.jsx",
|
||||
"typescript",
|
||||
"typescriptreact",
|
||||
"typescript.tsx",
|
||||
},
|
||||
-- add dynamic root dir support
|
||||
root_dir = require("lspconfig.util").root_pattern("package.json", "tsconfig.json", "jsconfig.json", ".git"),
|
||||
cmd = { "vscode-eslint-language-server", "--stdio" }, -- add file type support
|
||||
filetypes = {
|
||||
"javascript",
|
||||
"javascriptreact",
|
||||
"javascript.jsx",
|
||||
"typescript",
|
||||
"typescriptreact",
|
||||
"typescript.tsx",
|
||||
},
|
||||
-- add dynamic root dir support
|
||||
root_dir = require("lspconfig.util").root_pattern(
|
||||
"package.json",
|
||||
"tsconfig.json",
|
||||
"jsconfig.json",
|
||||
".eslintrc.json",
|
||||
".eslintrc.js",
|
||||
".eslintrc.cjs"
|
||||
),
|
||||
}
|
||||
|
|
8
lua/user/lsp/settings/sqlls.lua
Normal file
8
lua/user/lsp/settings/sqlls.lua
Normal file
|
@ -0,0 +1,8 @@
|
|||
return {
|
||||
-- cmd = { "sql-language-server", "up", "--method", "stdio" },
|
||||
-- filetypes = { "sql", "mysql" },
|
||||
-- -- add root dir support
|
||||
-- root_dir = require("lspconfig.util").root_pattern("package.json", "tsconfig.json", "jsconfig.json", ".git")
|
||||
-- or vim.loop.cwd()
|
||||
-- or vim.fn.getcwd(),
|
||||
}
|
|
@ -14,7 +14,7 @@ nvim_tree.setup({
|
|||
dotfiles = false,
|
||||
git_clean = false,
|
||||
no_buffer = false,
|
||||
custom = { "node_modules", "\\.cache" },
|
||||
custom = { "node_modules", "\\.cache", "\\.git" },
|
||||
exclude = {},
|
||||
},
|
||||
filesystem_watchers = {
|
||||
|
|
|
@ -161,6 +161,12 @@ web_devicons.setup({
|
|||
cterm_color = "240",
|
||||
name = "viteconfigts",
|
||||
},
|
||||
[".releaserc"] = {
|
||||
icon = "",
|
||||
color = "#9C9C9C",
|
||||
cterm_color = "240",
|
||||
name = "releaserc",
|
||||
},
|
||||
[".profile"] = {
|
||||
icon = "",
|
||||
color = "#9C9C9C",
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue