Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/joshau-04/sublime.nvim
An extensible neovim configuration
https://github.com/joshau-04/sublime.nvim
configuration neovim sublime
Last synced: 16 days ago
JSON representation
An extensible neovim configuration
- Host: GitHub
- URL: https://github.com/joshau-04/sublime.nvim
- Owner: JoshAU-04
- License: mit
- Created: 2025-01-19T00:46:56.000Z (19 days ago)
- Default Branch: main
- Last Pushed: 2025-01-19T01:04:40.000Z (19 days ago)
- Last Synced: 2025-01-19T02:18:30.583Z (19 days ago)
- Topics: configuration, neovim, sublime
- Language: Lua
- Size: 18.6 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
# sublime.nvim
## Introduction
This is a neat little config that is
* Small
* Modular
* Feature-complete### Disclaimer
This is modified (including the README) from kickstart. It is modified to be:
* More modular
* and Opinionated### Install External Dependencies
External Requirements:
- Basic utils: `git`, `make`, `unzip`, C Compiler (`gcc`)
- [ripgrep](https://github.com/BurntSushi/ripgrep#installation)
- Clipboard tool (xclip/xsel/win32yank or other depending on the platform)
- A [Nerd Font](https://www.nerdfonts.com/): optional, provides various icons
- if you have it set `vim.g.have_nerd_font` in `init.lua` to true
- Language Setup:
- If you want to write Typescript, you need `npm`
- If you want to write Golang, you will need `go`
- etc.> **NOTE**
> See [Install Recipes](#Install-Recipes) for additional Windows and Linux specific notes
> and quick install snippets### Install Sublime
> **NOTE**
> [Backup](#FAQ) your previous configuration (if any exists)Neovim's configurations are located under the following paths, depending on your OS:
| OS | PATH |
| :- | :--- |
| Linux, MacOS | `$XDG_CONFIG_HOME/nvim`, `~/.config/nvim` |
| Windows (cmd)| `%localappdata%\nvim\` |
| Windows (powershell)| `$env:LOCALAPPDATA\nvim\` |#### Recommended Step
[Fork](https://docs.github.com/en/get-started/quickstart/fork-a-repo) this repo
so that you have your own copy that you can modify, then install by cloning the
fork to your machine using one of the commands below, depending on your OS.> **NOTE**
> Your fork's URL will be something like this:
> `https://github.com//sublime.nvim.git`You likely want to remove `lazy-lock.json` from your fork's `.gitignore` file
too - it's ignored in the sublime repo to make maintenance easier, but it's
[recommended to track it in version control](https://lazy.folke.io/usage/lockfile).#### Clone sublime.nvim
> **NOTE**
> If following the recommended step above (i.e., forking the repo), replace
> `nvim-lua` with `` in the commands below### Post Installation
Start Neovim
```sh
nvim
```That's it! Lazy will install all the plugins you have. Use `:Lazy` to view
the current plugin status. Hit `q` to close the window.#### Read The Friendly Documentation
Read through the `init.lua` file in your configuration folder for more
information about extending and exploring Neovim. That also includes
examples of adding popularly requested plugins.> [!NOTE]
> For more information about a particular plugin check its repository's documentation.