# nvim-config **Repository Path**: tinusgraglin/nvim-config ## Basic Information - **Project Name**: nvim-config - **Description**: My Neovim Config - **Primary Language**: Lua - **License**: Not specified - **Default Branch**: new - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2023-03-29 - **Last Updated**: 2025-03-22 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # Introduction This repo includes my neovim config files. # It Looks Like This ![it-looks-like-this](pics/it-looks-like-this.png) # Note - I place these files inside `[nvim config dir]/lua/lin/` and so that `[nvim config dir]/init.lua` includes just one line: ``` lua require('lin') ``` - The colorscheme setup is put inside a file named `looks-good.conf` which is included in the `.gitignore`, so that I can change the default colorscheme whenever I feel like without annoying `git`. - The two major parts of this config, `base` and `plugs` are separated. One can disable the non-`base` part by setting the `JustTheBase` to `true` in `init.lua` to have a basic (opinionated) text editor. - You will need a patched font from [here](https://www.nerdfonts.com/font-downloads) for some nice-looking glyphs. - `base/dicts/` directory contains [dictionary](https://neovim.io/doc/user/options.html#'dictionary') files. I use a word list generated by [the simple web app](http://app.aspell.net/create) from the [SCOWL](http://wordlist.aspell.net/) database project. - All language servers are assumed to be available inside one of the `PATH` dirs.