This commit is contained in:
Garen Tyler 2025-01-29 15:08:59 -07:00
parent 401dc5896c
commit 6ba4f2f05d
Signed by: garentyler
SSH Key Fingerprint: SHA256:G4ke7blZMdpWPbkescyZ7IQYE4JAtwpI85YoJdq+S7U
5 changed files with 28 additions and 20 deletions

View File

@ -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/<your_user>/<your_repository> ~/.config/nvim
git clone https://github.com/garentyler/AstroNvim ~/.config/nvim
```
#### Initialize AstroNvim
```shell
nvim --headless -c 'quitall'
```
#### Start Neovim

View File

@ -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" },

View File

@ -0,0 +1,7 @@
return {
"catppuccin/nvim",
name = "catppuccin",
opts = {
transparent_background = true,
},
}

View File

@ -1,7 +0,0 @@
return {
"navarasu/onedark.nvim",
name = "onedark",
opts = {
transparent = true,
},
}

View File

@ -0,0 +1,9 @@
return {
"olimorris/onedarkpro.nvim",
name = "onedarkpro",
opts = {
options = {
transparency = true,
},
},
}