Skip to content

hoofcushion/hc-nvim

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

51 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Intro

hc-nvim is a configuration for Neovim.

hc stands for the abbreviation of the owner Hoof Cushion.

Goals of hc-nvim

  • Simple
  • Centralize
  • Extendable
  • Decouple
  • Linear

Usage

Installation

Dependencies

  • Neovim
  • Git

Unix

Run the following command in the terminal:

cd ~
cd .config
mv nvim nvim.bak
git clone https://github.com/hoofcushion/hc-nvim nvim

Windows

Press Win+r, type "powershell", press enter, then run the following commands:

cd ~
cd AppData/Local
mv nvim nvim.bak
git clone https://github.com/hoofcushion/hc-nvim nvim

Others

This command prints your config directory:

nvim --headless -c "echo stdpath('config') | q"

Navigate to the directory it prints and ensure the directory is empty and backed up.

git clone https://github.com/hoofcushion/hc-nvim .

Lazy.nvim

If you are using lazy.nvim, hc-nvim can be installed as a plugin with the following configuration:

require("lazy").setup({
    spec = {
        { "hoofcushion/hc-nvim", import = "hc-nvim.export" },
    },
    default = {
        lazy = true,
    },
})

Troubleshoot

  • Set up a proxy before using git.
  • Use the checkhealth command to diagnose issues.

About

A lazy.nvim parasiticed configuration.

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages