# TurboNvim **Repository Path**: a1401358759/TurboNvim ## Basic Information - **Project Name**: TurboNvim - **Description**: No description available - **Primary Language**: Lua - **License**: Apache-2.0 - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2023-10-31 - **Last Updated**: 2023-10-31 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README

TurboNvim

TurboNvim is an excellent Neovim configuration with lazy.nvim , which is as powerful as Vscode, is lightning fast ⚡

## 🌟 Preview ![Dashboard Preview Image](https://img.yangsihan.com/nvim_dashboard.png) ![Coding Preview Image](https://img.yangsihan.com/nvim_main.png) ![Float Term Image](https://img.yangsihan.com/nvim_toggleterm.png) ![Find Files Image](https://img.yangsihan.com/nvim_telescope_findfiles.png) ![Live Grep Image](https://img.yangsihan.com/nvim_telescope_live_grep.png) ![Lazy Git Image](https://img.yangsihan.com/nvim_lazygit.png) ![Float Ranger Image](https://img.yangsihan.com/nvim_ranger.png) ![NavBuddy Image](https://img.yangsihan.com/nvim_navbuddy.png) ## ✨ Features - File explorer with [Nvim-Tree](https://github.com/nvim-tree/nvim-tree.lua) - Autocompletion with [Cmp](https://github.com/hrsh7th/nvim-cmp) - Git integration with [Gitsigns](https://github.com/lewis6991/gitsigns.nvim) - Statusline with [Lualine](https://github.com/nvim-lualine/lualine.nvim) - Winbar with [Dropbar](https://github.com/Bekaboo/dropbar.nvim) - Bufferline with [Bufferline](https://github.com/akinsho/bufferline.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) - Debug Adapter Protocol with [nvim-dap](https://github.com/mfussenegger/nvim-dap) ## ⚡ Requirements - [Nerd Fonts](https://www.nerdfonts.com/font-downloads) - [Neovim 0.8+ (Including nightly)](https://github.com/neovim/neovim/releases/tag/stable) - [Tree-sitter CLI](https://github.com/tree-sitter/tree-sitter/blob/master/cli/README.md) (_Note:_ This is only necessary if you want to use `auto_install` feature with Treesitter) - 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) [[2]](#2) - Optional Requirements: - [ripgrep](https://github.com/BurntSushi/ripgrep) - live grep telescope search (`fg`) - [lazygit](https://github.com/jesseduffield/lazygit) - git ui toggle terminal (`tg`) > [1] All downloadable Nerd Fonts contain icons which are used by TurboNvim. Install the Nerd Font of your choice to your system and in your terminal emulator settings, set its font face to that Nerd Font. If you are using TurboNvim on a remote system via SSH, you do not need to install the font on the remote system. > [2] Note when using default theme: For MacOS, the default terminal does not have true color support. You will need to use [iTerm2](https://iterm2.com/), [Kitty](https://sw.kovidgoyal.net/kitty/), [WezTerm](https://wezfurlong.org/wezterm/), or another [terminal emulator](https://gist.github.com/XVilka/8346728#terminal-emulators) that has true color support. ## 🛠️ Installation ### Linux/Mac OS (Unix) #### Make a backup of your current nvim and shared folder ```shell mv ~/.config/nvim ~/.config/nvim.bak mv ~/.local/share/nvim ~/.local/share/nvim.bak ``` #### Clone the repository ```shell git clone --depth 1 https://github.com/a1401358759/TurboNvim ~/.config/nvim nvim ``` ### Windows (Powershell) #### Make a backup of your current nvim and nvim-data folder ```pwsh Rename-Item -Path $env:LOCALAPPDATA\nvim -NewName $env:LOCALAPPDATA\nvim.bak Rename-Item -Path $env:LOCALAPPDATA\nvim-data -NewName $env:LOCALAPPDATA\nvim-data.bak ``` #### Clone the repository ```pwsh git clone --depth 1 https://github.com/a1401358759/TurboNvim $env:LOCALAPPDATA\nvim nvim ``` ## 📦 Basic Setup #### Install LSP Enter `:LspInstall` followed by the name of the server you want to install
Example: `:LspInstall pyright` #### Install language parser Enter `:TSInstall` followed by the name of the language you want to install
Example: `:TSInstall python` #### Install Debugger Enter `:DapInstall` followed by the name of the debugger you want to install
Example: `:DapInstall python` #### Manage plugins Run `:Lazy check` to check for plugin updates Run `:Lazy update` to apply any pending plugin updates Run `:Lazy clean` to remove any disabled or unused plugins Run `:Lazy sync` to update and clean plugins ## ⭐ Credits Sincere appreciation to the following repositories, plugin authors and the entire neovim community out there that made the development of TurboNvim possible. - [LazyVim](https://github.com/LazyVim/LazyVim) - [AstroNvim](https://github.com/AstroNvim/AstroNvim/tree/main) - [NvChad](https://github.com/NvChad/NvChad)
[![Lua](https://img.shields.io/badge/Made%20with%20Lua-blue.svg?style=for-the-badge&logo=lua)](https://lua.org)