Added phone's nvim config

This commit is contained in:
2025-03-16 07:58:40 +01:00
parent 95a5a2caa7
commit 0c2019394a
12 changed files with 275 additions and 0 deletions

View File

@@ -0,0 +1,34 @@
return {
{
"stevearc/conform.nvim",
-- event = 'BufWritePre', -- uncomment for format on save
opts = require "configs.conform",
},
-- These are some examples, uncomment them if you want to see them work!
{
"neovim/nvim-lspconfig",
config = function()
require "configs.lspconfig"
end,
},
{
"nvim-treesitter/nvim-treesitter",
opts = {
ensure_installed = {
"vim", "lua", "vimdoc",
"html", "css"
},
},
},
-- Enable Copilot
{
"github/copilot.vim",
lazy = false,
config = function()
vim.g.copilot_no_tab_map = true
vim.g.copilot_assume_mapped = true
end
}
}