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
colorscheme = "astrodark",
colorscheme = "tokyonight-night",
-- Diagnostics configuration (for vim.diagnostics.config({...})) when diagnostics are on
diagnostics = {

View File

@ -4,6 +4,6 @@ return {
-- 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.colorscheme.tokyonight" },
-- { import = "astrocommunity.completion.copilot-lua-cmp" },
}

View File

@ -7,7 +7,12 @@ return {
opts = function(_, opts)
-- 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, {
-- "lua_ls",
"lua_ls",
"rust_analyzer",
"omnisharp",
"taplo",
"gopls",
"tsserver",
})
end,
},
@ -19,7 +24,7 @@ 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",
-- "stylua"
})
end,
},
@ -30,6 +35,9 @@ 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, {
-- "python",
"codelldb",
"node-debug2-adapter",
"go-debug-adapter",
})
end,
},

View File

@ -3,7 +3,10 @@ return {
opts = function(_, opts)
-- 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, {
-- "lua"
"lua",
"rust",
"typescript",
"javascript",
})
end,
}

View File

@ -1,12 +1,35 @@
return {
-- You can also add new plugins here as well:
-- Add plugins, the lazy syntax
-- "andweeb/presence.nvim",
-- {
-- "ray-x/lsp_signature.nvim",
-- event = "BufRead",
-- config = function()
-- require("lsp_signature").setup()
-- end,
-- },
-- You can also add new plugins here as well, using the lazy syntax:
-- Discord rich presence plugin
{
"andweeb/presence.nvim",
config = function()
require("presence").setup({
auto_update = true,
show_time = true,
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,
},
}