minor changes

This commit is contained in:
Tiago Sousa 2024-06-08 16:49:38 +01:00
parent 299fdc256c
commit 5924b46d9f
Signed by: tiago
SSH key fingerprint: SHA256:rOmjD81ZIhKdCkFWS9UIKdBi4UByF5x3hRH/0YeXsPI
7 changed files with 32 additions and 15 deletions

View file

@ -0,0 +1,2 @@
local set = vim.opt_local
set.shiftwidth = 2

View file

@ -0,0 +1,2 @@
local set = vim.opt_local
set.shiftwidth = 2

View file

@ -0,0 +1,2 @@
local set = vim.opt_local
set.shiftwidth = 2

View file

@ -0,0 +1,2 @@
local set = vim.opt_local
set.shiftwidth = 2

View file

@ -7,6 +7,7 @@ return {
python = { "black" },
javascript = { "prettierd" },
typescript = { "prettierd" },
typescriptreact = { "prettierd" },
html = { "prettierd" },
json = { "prettierd" },
yaml = { "prettierd" },

View file

@ -0,0 +1,8 @@
return {
-- "mfussenegger/nvim-lint",
-- config = function()
-- require("lint").linters_by_ft = {
-- javascript = { "eslint" },
-- }
-- end,
}

View file

@ -137,21 +137,21 @@ return {
end,
},
-- {
-- "zbirenbaum/copilot.lua",
-- event = "InsertEnter",
-- config = function()
-- require("copilot").setup({
-- suggestion = {
-- enabled = true,
-- auto_trigger = true,
-- keymap = {
-- accept = "<C-q>",
-- },
-- },
-- })
-- end,
-- },
{
"zbirenbaum/copilot.lua",
event = "InsertEnter",
config = function()
require("copilot").setup({
suggestion = {
enabled = true,
auto_trigger = true,
keymap = {
accept = "<C-q>",
},
},
})
end,
},
{
"neovim/nvim-lspconfig",
dependencies = {