first user change

This commit is contained in:
Wyatt J. Miller 2023-09-10 16:58:10 -04:00
parent 1bdd17e813
commit a34de6ac71
5 changed files with 49 additions and 15 deletions

View File

@ -18,7 +18,7 @@ return {
}, },
-- Set colorscheme to use -- Set colorscheme to use
colorscheme = "astrodark", colorscheme = "tokyonight-night",
-- Diagnostics configuration (for vim.diagnostics.config({...})) when diagnostics are on -- Diagnostics configuration (for vim.diagnostics.config({...})) when diagnostics are on
diagnostics = { diagnostics = {

View File

@ -4,6 +4,6 @@ return {
-- example of imporing a plugin, comment out to use it or add your own -- 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 -- available plugins can be found at https://github.com/AstroNvim/astrocommunity
-- { import = "astrocommunity.colorscheme.catppuccin" }, -- { import = "astrocommunity.colorscheme.tokyonight" },
-- { import = "astrocommunity.completion.copilot-lua-cmp" }, -- { import = "astrocommunity.completion.copilot-lua-cmp" },
} }

View File

@ -7,7 +7,12 @@ return {
opts = function(_, opts) opts = function(_, opts)
-- add more things to the ensure_installed table protecting against community packs modifying it -- 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, { opts.ensure_installed = require("astronvim.utils").list_insert_unique(opts.ensure_installed, {
-- "lua_ls", "lua_ls",
"rust_analyzer",
"omnisharp",
"taplo",
"gopls",
"tsserver",
}) })
end, end,
}, },
@ -19,7 +24,7 @@ return {
-- add more things to the ensure_installed table protecting against community packs modifying it -- 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, { opts.ensure_installed = require("astronvim.utils").list_insert_unique(opts.ensure_installed, {
-- "prettier", -- "prettier",
-- "stylua", -- "stylua"
}) })
end, end,
}, },
@ -30,6 +35,9 @@ return {
-- add more things to the ensure_installed table protecting against community packs modifying it -- 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, { opts.ensure_installed = require("astronvim.utils").list_insert_unique(opts.ensure_installed, {
-- "python", -- "python",
"codelldb",
"node-debug2-adapter",
"go-debug-adapter",
}) })
end, end,
}, },

View File

@ -3,7 +3,10 @@ return {
opts = function(_, opts) opts = function(_, opts)
-- add more things to the ensure_installed table protecting against community packs modifying it -- 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, { opts.ensure_installed = require("astronvim.utils").list_insert_unique(opts.ensure_installed, {
-- "lua" "lua",
"rust",
"typescript",
"javascript",
}) })
end, end,
} }

View File

@ -1,12 +1,35 @@
return { return {
-- You can also add new plugins here as well: -- You can also add new plugins here as well, using the lazy syntax:
-- Add plugins, the lazy syntax -- Discord rich presence plugin
-- "andweeb/presence.nvim", {
-- { "andweeb/presence.nvim",
-- "ray-x/lsp_signature.nvim", config = function()
-- event = "BufRead", require("presence").setup({
-- config = function() auto_update = true,
-- require("lsp_signature").setup() show_time = true,
-- end, client_id = "242049919999803395",
-- },
editing_text = "Doing the thing on %s",
file_explorer_text = "Scratching my head in %s",
git_commit_text = "Signing my soul away",
})
end,
},
-- Tokyonight colorscheme plugin
"folke/tokyonight.nvim",
-- Todo color comments plugin
{
"folke/todo-comments.nvim",
dependencies = { "nvim-lua/plenary.nvim" },
opts = {
keywords = {
TODO = {icon = "✔️", color = "info"},
HACK = {icon = "🔥", color = "warning"},
WARN = {icon = "⚠️", color = "warning"},
}
},
lazy = false,
},
} }