From 6ba4f2f05df99c0b427e6a6d0dcfe346ce9acd51 Mon Sep 17 00:00:00 2001 From: Garen Tyler Date: Wed, 29 Jan 2025 15:08:59 -0700 Subject: [PATCH] changes --- README.md | 22 ++++++++++------------ lazy-lock.json | 3 ++- lua/plugins/catppuccin.lua | 7 +++++++ lua/plugins/onedark.lua | 7 ------- lua/plugins/onedarkpro.lua | 9 +++++++++ 5 files changed, 28 insertions(+), 20 deletions(-) create mode 100644 lua/plugins/catppuccin.lua delete mode 100644 lua/plugins/onedark.lua create mode 100644 lua/plugins/onedarkpro.lua diff --git a/README.md b/README.md index 365674b..90ad2d4 100644 --- a/README.md +++ b/README.md @@ -1,12 +1,10 @@ -# AstroNvim Template +# AstroNvim Configuration -**NOTE:** This is for AstroNvim v4+ - -A template for getting started with [AstroNvim](https://github.com/AstroNvim/AstroNvim) +My custom configuration for [AstroNvim](https://github.com/AstroNvim/AstroNvim). ## 🛠️ Installation -#### Make a backup of your current nvim and shared folder +#### Make a backup of the current config (optional) ```shell mv ~/.config/nvim ~/.config/nvim.bak @@ -15,16 +13,16 @@ mv ~/.local/state/nvim ~/.local/state/nvim.bak mv ~/.cache/nvim ~/.cache/nvim.bak ``` -#### Create a new user repository from this template - -Press the "Use this template" button above to create a new repository to store your user configuration. - -You can also just clone this repository directly if you do not want to track your user configuration in GitHub. - #### Clone the repository ```shell -git clone https://github.com// ~/.config/nvim +git clone https://github.com/garentyler/AstroNvim ~/.config/nvim +``` + +#### Initialize AstroNvim + +```shell +nvim --headless -c 'quitall' ``` #### Start Neovim diff --git a/lazy-lock.json b/lazy-lock.json index f2ceb22..cbbb6c9 100644 --- a/lazy-lock.json +++ b/lazy-lock.json @@ -10,6 +10,7 @@ "astrotheme": { "branch": "main", "commit": "7aa05c0ada35ff127f151f70b0ba2d042953eeb4" }, "astroui": { "branch": "main", "commit": "076766c1d422db486378354729f8fa7c1a68b745" }, "better-escape.nvim": { "branch": "master", "commit": "199dcc2643dec5d8dbdab4ec672cf405224dcb3b" }, + "catppuccin": { "branch": "main", "commit": "f67b886d65a029f12ffa298701fb8f1efd89295d" }, "cmp-buffer": { "branch": "main", "commit": "3022dbc9166796b644a841a02de8dd1cc1d311fa" }, "cmp-dap": { "branch": "master", "commit": "ea92773e84c0ad3288c3bc5e452ac91559669087" }, "cmp-nvim-lsp": { "branch": "main", "commit": "99290b3ec1322070bcfb9e846450a46f6efa50f0" }, @@ -50,7 +51,7 @@ "nvim-ufo": { "branch": "main", "commit": "a5390706f510d39951dd581f6d2a972741b3fa26" }, "nvim-web-devicons": { "branch": "master", "commit": "aafa5c187a15701a7299a392b907ec15d9a7075f" }, "nvim-window-picker": { "branch": "main", "commit": "0dfef64eaf063e1cd27983ab11a30e7bc5b74fac" }, - "onedark": { "branch": "master", "commit": "67a74c275d1116d575ab25485d1bfa6b2a9c38a6" }, + "onedarkpro": { "branch": "main", "commit": "44775f8206ee43b692e7f3dc894ddc47996ee523" }, "plenary.nvim": { "branch": "master", "commit": "3707cdb1e43f5cea73afb6037e6494e7ce847a66" }, "promise-async": { "branch": "main", "commit": "38a4575da9497326badd3995e768b4ccf0bb153e" }, "resession.nvim": { "branch": "master", "commit": "cc819b0489938d03e4f3532a583354f0287c015b" }, diff --git a/lua/plugins/catppuccin.lua b/lua/plugins/catppuccin.lua new file mode 100644 index 0000000..a05e0de --- /dev/null +++ b/lua/plugins/catppuccin.lua @@ -0,0 +1,7 @@ +return { + "catppuccin/nvim", + name = "catppuccin", + opts = { + transparent_background = true, + }, +} diff --git a/lua/plugins/onedark.lua b/lua/plugins/onedark.lua deleted file mode 100644 index e7a356a..0000000 --- a/lua/plugins/onedark.lua +++ /dev/null @@ -1,7 +0,0 @@ -return { - "navarasu/onedark.nvim", - name = "onedark", - opts = { - transparent = true, - }, -} diff --git a/lua/plugins/onedarkpro.lua b/lua/plugins/onedarkpro.lua new file mode 100644 index 0000000..75b95c0 --- /dev/null +++ b/lua/plugins/onedarkpro.lua @@ -0,0 +1,9 @@ +return { + "olimorris/onedarkpro.nvim", + name = "onedarkpro", + opts = { + options = { + transparency = true, + }, + }, +}