doc: Amélioration du README

This commit is contained in:
Xavier Logerais 2025-03-22 17:21:34 +01:00
parent fc9ee26343
commit fd21091ffd
2 changed files with 27 additions and 19 deletions

View File

@ -1,18 +1,39 @@
# AstroNvim configuration
# Configuration pour [AstroNvim](https://astronvim.com/)
**NOTE:** This is for AstroNvim v4+
**NOTE:** Cette configuration est faite pour les versions de AstroNvim supérieures à la version 4 et plus.
## 🛠️ Installation
#### Clone the repository
### Installation nvim par défaut
#### Copie du dépôt
```shell
git clone https://gitea.logerais.com/xavier/config-astronvim.git ~/.config/nvim
```
#### Lancement
```shell
nvim
```
### Installation nvim alternative
#### Copie du dépôt
```shell
git clone https://gitea.logerais.com/xavier/config-astronvim.git ~/.config/astronvim
```
#### Start Neovim
#### Définition d'un alias
```shell
export NVIM_APPNAME=astronvim
nvim
alias astronvim='NVIM_APPNAME=astronvim nvim'
```
#### Lancement
```shell
astronvim
```

View File

@ -1,13 +0,0 @@
return {
"nvim-telescope/telescope.nvim",
dependencies = {
"nvim-telescope/telescope-file-browser.nvim",
"da-moon/telescope-toggleterm.nvim",
},
config = function(...)
require "plugins.configs.telescope"(...)
local telescope = require "telescope"
telescope.load_extension "file_browser"
telescope.load_extension "toggleterm"
end,
}