From 9e43de1a2a8989b1174938a16f842fb7b6d5dfd3 Mon Sep 17 00:00:00 2001 From: Christoffer Martinsson Date: Sat, 3 Jun 2023 21:48:04 +0200 Subject: [PATCH] Cleanup --- config/nvim/lua/user/init.lua | 3 --- config/nvim/lua/user/options.lua | 1 - config/nvim/lua/user/plugins/astrotheme.lua | 4 +--- config/nvim/lua/user/plugins/community.lua | 4 ++-- config/nvim/lua/user/plugins/mason.lua | 2 -- 5 files changed, 3 insertions(+), 11 deletions(-) diff --git a/config/nvim/lua/user/init.lua b/config/nvim/lua/user/init.lua index ba941fb..9ed4627 100644 --- a/config/nvim/lua/user/init.lua +++ b/config/nvim/lua/user/init.lua @@ -11,9 +11,6 @@ return { show_changelog = true, -- show the changelog after performing an update auto_quit = false, -- automatically quit the current session after a successful update remotes = { -- easily add new remotes to track - -- ["remote_name"] = "https://remote_url.come/repo.git", -- full remote url - -- ["remote2"] = "github_user/repo", -- GitHub user/repo shortcut, - -- ["remote3"] = "github_user", -- GitHub user assume AstroNvim fork }, }, diff --git a/config/nvim/lua/user/options.lua b/config/nvim/lua/user/options.lua index 2eca50b..23d6528 100644 --- a/config/nvim/lua/user/options.lua +++ b/config/nvim/lua/user/options.lua @@ -17,7 +17,6 @@ return { diagnostics_mode = 3, -- set the visibility of diagnostics in the UI (0=off, 1=only show in status line, 2=virtual text off, 3=all on) icons_enabled = true, -- disable icons in the UI (disable if no nerd font is available, requires :PackerSync after changing) ui_notifications_enabled = true, -- disable notifications when toggling UI elements - copilot_filetypes = {markdown = true}, -- enable copilot for markdown files }, } -- If you need more control, you can use the function()...end notation diff --git a/config/nvim/lua/user/plugins/astrotheme.lua b/config/nvim/lua/user/plugins/astrotheme.lua index 9021745..a9c7504 100644 --- a/config/nvim/lua/user/plugins/astrotheme.lua +++ b/config/nvim/lua/user/plugins/astrotheme.lua @@ -20,9 +20,7 @@ return { }, highlights = { - astrodark = { - - }, + astrodark = {}, }, } end, diff --git a/config/nvim/lua/user/plugins/community.lua b/config/nvim/lua/user/plugins/community.lua index 91a4df2..420cacd 100644 --- a/config/nvim/lua/user/plugins/community.lua +++ b/config/nvim/lua/user/plugins/community.lua @@ -1,9 +1,9 @@ return { -- Add the community repository of plugin specifications - "AstroNvim/astrocommunity", + -- "AstroNvim/astrocommunity", -- example of imporing a plugin, comment out to use it or add your own -- available plugins can be found at https://github.com/AstroNvim/astrocommunity -- { import = "astrocommunity.colorscheme.catppuccin" }, - { import = "astrocommunity.completion.copilot-lua-cmp" }, + -- { import = "astrocommunity.completion.copilot-lua-cmp" }, } diff --git a/config/nvim/lua/user/plugins/mason.lua b/config/nvim/lua/user/plugins/mason.lua index bed1ebf..4c84fb5 100644 --- a/config/nvim/lua/user/plugins/mason.lua +++ b/config/nvim/lua/user/plugins/mason.lua @@ -24,10 +24,8 @@ return { -- add more things to the ensure_installed table protecting against community packs modifying it opts.ensure_installed = require("astronvim.utils").list_insert_unique(opts.ensure_installed, { "prettier", - "stylua", "clang-format", "black", - "luacheck", }) end, },