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" }, python = { "black" },
javascript = { "prettierd" }, javascript = { "prettierd" },
typescript = { "prettierd" }, typescript = { "prettierd" },
typescriptreact = { "prettierd" },
html = { "prettierd" }, html = { "prettierd" },
json = { "prettierd" }, json = { "prettierd" },
yaml = { "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, end,
}, },
-- { {
-- "zbirenbaum/copilot.lua", "zbirenbaum/copilot.lua",
-- event = "InsertEnter", event = "InsertEnter",
-- config = function() config = function()
-- require("copilot").setup({ require("copilot").setup({
-- suggestion = { suggestion = {
-- enabled = true, enabled = true,
-- auto_trigger = true, auto_trigger = true,
-- keymap = { keymap = {
-- accept = "<C-q>", accept = "<C-q>",
-- }, },
-- }, },
-- }) })
-- end, end,
-- }, },
{ {
"neovim/nvim-lspconfig", "neovim/nvim-lspconfig",
dependencies = { dependencies = {