From 47d419e46aea94a1fee788003a27770eab11329c Mon Sep 17 00:00:00 2001 From: Aargh Rai Date: Thu, 18 Jun 2026 15:43:12 +0530 Subject: custom made my nvim config --- nvim/lua/configs/conform.lua | 15 -------------- nvim/lua/configs/lazy.lua | 47 ------------------------------------------ nvim/lua/configs/lspconfig.lua | 26 ----------------------- 3 files changed, 88 deletions(-) delete mode 100644 nvim/lua/configs/conform.lua delete mode 100644 nvim/lua/configs/lazy.lua delete mode 100644 nvim/lua/configs/lspconfig.lua (limited to 'nvim/lua/configs') diff --git a/nvim/lua/configs/conform.lua b/nvim/lua/configs/conform.lua deleted file mode 100644 index 35ba6cf..0000000 --- a/nvim/lua/configs/conform.lua +++ /dev/null @@ -1,15 +0,0 @@ -local options = { - formatters_by_ft = { - lua = { "stylua" }, - -- css = { "prettier" }, - -- html = { "prettier" }, - }, - - -- format_on_save = { - -- -- These options will be passed to conform.format() - -- timeout_ms = 500, - -- lsp_fallback = true, - -- }, -} - -return options diff --git a/nvim/lua/configs/lazy.lua b/nvim/lua/configs/lazy.lua deleted file mode 100644 index cd170bd..0000000 --- a/nvim/lua/configs/lazy.lua +++ /dev/null @@ -1,47 +0,0 @@ -return { - defaults = { lazy = true }, - install = { colorscheme = { "nvchad" } }, - - ui = { - icons = { - ft = "", - lazy = "󰂠 ", - loaded = "", - not_loaded = "", - }, - }, - - performance = { - rtp = { - disabled_plugins = { - "2html_plugin", - "tohtml", - "getscript", - "getscriptPlugin", - "gzip", - "logipat", - "netrw", - "netrwPlugin", - "netrwSettings", - "netrwFileHandlers", - "matchit", - "tar", - "tarPlugin", - "rrhelper", - "spellfile_plugin", - "vimball", - "vimballPlugin", - "zip", - "zipPlugin", - "tutor", - "rplugin", - "syntax", - "synmenu", - "optwin", - "compiler", - "bugreport", - "ftplugin", - }, - }, - }, -} diff --git a/nvim/lua/configs/lspconfig.lua b/nvim/lua/configs/lspconfig.lua deleted file mode 100644 index d89bd10..0000000 --- a/nvim/lua/configs/lspconfig.lua +++ /dev/null @@ -1,26 +0,0 @@ -require("nvchad.configs.lspconfig").defaults() - --- NOTE: DO NOT USE MASON TO INSTALL LSPs, THEY CONFLICT WITH THESE, IF YOU --- HAVE ANY INSTALLED, REMOVE THEM -local servers = { - "html", "cssls", "rust_analyzer", "zls", - "ts_ls", "pylsp" -} -vim.lsp.enable(servers) - -vim.lsp.config("clangd", { - cmd = { - "clangd", - "--query-driver=/run/current-system/sw/bin/arm-none-eabi-gcc", - }, -}) - - - -vim.lsp.config("gdscript", { - cmd = { "ncat", "localhost", "6005" }, - filetypes = { "gd", "gdscript", "gdscript3" }, -}) - -vim.lsp.enable("clangd") -vim.lsp.enable("gdscript") -- cgit v1.2.3