mirror of https://github.com/qpixel/dotfiles.git
127 lines
6.0 KiB
Markdown
127 lines
6.0 KiB
Markdown
<div align="center" id="madewithlua">
|
|
<img src="https://astronvim.github.io/img/logo/astronvim.svg" width="110", height="100">
|
|
</div>
|
|
|
|
<h1 align="center">AstroNvim</h1>
|
|
|
|
<div align="center"><p>
|
|
<a href="https://github.com/AstroNvim/AstroNvim/pulse">
|
|
<img src="https://img.shields.io/github/last-commit/AstroNvim/AstroNvim?color=%4dc71f&label=Last%20Commit&logo=github&style=flat-square"/>
|
|
</a>
|
|
<a href="https://github.com/AstroNvim/AstroNvim/blob/main/LICENSE">
|
|
<img src="https://img.shields.io/github/license/AstroNvim/AstroNvim?label=License&logo=GNU&style=flat-square"/>
|
|
</a>
|
|
<a href="https://neovim.io/">
|
|
<img src="https://img.shields.io/badge/Neovim-0.7+-blueviolet.svg?style=flat-square&logo=Neovim&logoColor=white"/>
|
|
</a>
|
|
<a href="https://discord.gg/UcZutyeaFW">
|
|
<img src="https://img.shields.io/badge/discord-Join-7289da?color=%235865F2%20&label=Discord&logo=discord&logoColor=%23ffffff&style=flat-square"/>
|
|
</a>
|
|
</p>
|
|
</div>
|
|
|
|
<p align="center">
|
|
AstroNvim is an aesthetic and feature-rich neovim config that is extensible and easy to use with a great set of plugins
|
|
</p>
|
|
|
|
**_Notice:_** AstroNvim v1.4.0 has added `stable` and `nightly` update channels. For the time being we have kept the default update channel to `nightly` so that the behavior of AstroNvim doesn't change (this could be considered a breaking change to some). We are planning to make the `stable` channel the default update channel when Neovim v0.8 is released and we tag AstroNvim v2.0.0 to incorporate this "breaking" change.
|
|
|
|
## 🌟 Preview
|
|
|
|

|
|

|
|

|
|
|
|
## ✨ Features
|
|
|
|
- File explorer with [Neo-tree](https://github.com/nvim-neo-tree/neo-tree.nvim)
|
|
- Autocompletion with [Cmp](https://github.com/hrsh7th/nvim-cmp)
|
|
- Git integration with [Gitsigns](https://github.com/lewis6991/gitsigns.nvim)
|
|
- Statusline with [Feline](https://github.com/feline-nvim/feline.nvim)
|
|
- Terminal with [Toggleterm](https://github.com/akinsho/toggleterm.nvim)
|
|
- Fuzzy finding with [Telescope](https://github.com/nvim-telescope/telescope.nvim)
|
|
- Syntax highlighting with [Treesitter](https://github.com/nvim-treesitter/nvim-treesitter)
|
|
- Formatting and linting with [Null-ls](https://github.com/jose-elias-alvarez/null-ls.nvim)
|
|
- Language Server Protocol with [Native LSP](https://github.com/neovim/nvim-lspconfig)
|
|
- Buffer Line with [bufferline.nvim](https://github.com/akinsho/bufferline.nvim)
|
|
|
|
## ⚡ Requirements
|
|
|
|
- [Nerd Fonts](https://www.nerdfonts.com/font-downloads)
|
|
- [Neovim 0.7+](https://github.com/neovim/neovim/releases/tag/v0.7.0)
|
|
- A clipboard tool is necessary for the integration with the system clipboard (see [`:help clipboard-tool`](https://neovim.io/doc/user/provider.html#clipboard-tool) for supported solutions)
|
|
- Terminal with true color support (for the default theme, otherwise it is dependent on the theme you are using)
|
|
- Optional Requirements:
|
|
- [ripgrep](https://github.com/BurntSushi/ripgrep) - live grep telescope search (`<leader>fw`)
|
|
- [lazygit](https://github.com/jesseduffield/lazygit) - git ui toggle terminal (`<leader>tl` or `<leader>gg`)
|
|
- [NCDU](https://dev.yorhel.nl/ncdu) - disk usage toggle terminal (`<leader>tu`)
|
|
- [Htop](https://htop.dev/) - process viewer toggle terminal (`<leader>tt`)
|
|
- [Python](https://www.python.org/) - python repl toggle terminal (`<leader>tp`)
|
|
- [Node](https://nodejs.org/en/) - node repl toggle terminal (`<leader>tn`)
|
|
|
|
> Note when using default theme: For MacOS, the default terminal does not have true color support. You wil need to use [iTerm2](https://iterm2.com/) or another [terminal emulator](https://gist.github.com/XVilka/8346728#terminal-emulators) that has true color support.
|
|
|
|
> Note if you are still on Neovim v0.6: You can still install the previous version of AstroNvim that supported. After cloning the repository run `git checkout nvim-0.6` to check out this version. This will no longer be receiving updates.
|
|
|
|
## 🛠️ Installation
|
|
|
|
#### Make a backup of your current nvim folder
|
|
|
|
```
|
|
mv ~/.config/nvim ~/.config/nvimbackup
|
|
```
|
|
|
|
#### Clone the repository
|
|
|
|
```
|
|
git clone https://github.com/AstroNvim/AstroNvim ~/.config/nvim
|
|
nvim +PackerSync
|
|
```
|
|
|
|
## 📦 Basic Setup
|
|
|
|
#### Install LSP
|
|
|
|
Enter `:LspInstall` followed by the name of the server you want to install<br>
|
|
Example: `:LspInstall pyright`
|
|
|
|
#### Install language parser
|
|
|
|
Enter `:TSInstall` followed by the name of the language you want to install<br>
|
|
Example: `:TSInstall python`
|
|
|
|
#### Manage plugins
|
|
|
|
Run `:PackerClean` to remove any disabled or unused plugins<br>
|
|
Run `:PackerSync` to update and clean plugins<br>
|
|
|
|
#### Update AstroNvim
|
|
|
|
Run `:AstroUpdate` to get the latest updates from the repository<br>
|
|
|
|
## 🗒️ Links
|
|
|
|
[AstroNvim Documentation](https://astronvim.github.io/)
|
|
|
|
- [Basic Usage](https://astronvim.github.io/usage/walkthrough) is given for basic usage
|
|
- [Default Mappings](https://astronvim.github.io/usage/mappings) more about the default key bindings
|
|
- [Default Plugin Configuration](https://astronvim.github.io/configuration/plugin_defaults) more about the provided plugin defaults
|
|
- [Advanced Configuration](https://astronvim.github.io/configuration/config_options) more about advanced configuration
|
|
|
|
[Watch](https://www.youtube.com/watch?v=JQLZ7NJRTEo&t=4s&ab_channel=JohnCodes) a review video to know about the out of the box experience
|
|
|
|
## ⭐ Credits
|
|
|
|
Sincere appreciation to the following repositories, plugin authors and the entire neovim community out there that made the development of AstroNvim possible.
|
|
|
|
- [Plugins](https://astronvim.github.io/acknowledgements#plugins-used-in-astronvim)
|
|
- [NvChad](https://github.com/NvChad/NvChad)
|
|
- [LunarVim](https://github.com/LunarVim)
|
|
- [CosmicVim](https://github.com/CosmicNvim/CosmicNvim)
|
|
|
|
<div align="center" id="madewithlua">
|
|
|
|
[](https://lua.org)
|
|
|
|
</div>
|