20250704.1751658671
This commit is contained in:
parent
c60eade2cc
commit
4d618ad80f
5 changed files with 15 additions and 13 deletions
3
global/.config/nvim/ftplugin/css.lua
Normal file
3
global/.config/nvim/ftplugin/css.lua
Normal file
|
@ -0,0 +1,3 @@
|
||||||
|
vim.bo.shiftwidth = 2
|
||||||
|
vim.bo.expandtab = true
|
||||||
|
vim.bo.tabstop = 2
|
|
@ -91,7 +91,6 @@ local config = function()
|
||||||
})
|
})
|
||||||
|
|
||||||
vim.lsp.config('pyright', {
|
vim.lsp.config('pyright', {
|
||||||
require("lspconfig").pyright.setup({
|
|
||||||
settings = {
|
settings = {
|
||||||
python = {
|
python = {
|
||||||
analysis = {
|
analysis = {
|
||||||
|
@ -100,13 +99,9 @@ local config = function()
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
})
|
})
|
||||||
})
|
|
||||||
|
|
||||||
-- vim.lsp.config('clangd', {
|
vim.lsp.enable('clangd')
|
||||||
-- require("lspconfig").clangd.setup({
|
|
||||||
-- vim.b.lsp_zero_enable_autoformat = 0
|
|
||||||
-- })
|
|
||||||
-- })
|
|
||||||
|
|
||||||
require("mason").setup()
|
require("mason").setup()
|
||||||
require("mason-lspconfig").setup({
|
require("mason-lspconfig").setup({
|
||||||
|
|
|
@ -1,5 +1,9 @@
|
||||||
return {
|
return {
|
||||||
"nvim-tree/nvim-tree.lua",
|
"nvim-tree/nvim-tree.lua",
|
||||||
lazy = false,
|
lazy = false,
|
||||||
opts = {},
|
opts = {
|
||||||
|
filters = {
|
||||||
|
git_ignored = false
|
||||||
|
}
|
||||||
|
},
|
||||||
}
|
}
|
||||||
|
|
Binary file not shown.
Binary file not shown.
Loading…
Add table
Add a link
Reference in a new issue