Skip to content

JasonGrace2282/nvim

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

My Neovim Config

Currently working on my neovim config. image

Status

This config is mostly stable and ready for use.

Installation:

curl -L https://raw.githubusercontent.com/JasonGrace2282/nvim/main/setup.sh | bash

If you would like to add projects (utilized by code_runner.nvim), create a file at lua/config/projects.lua. You can then put the following there:

return {
  ["~/python/intel_2021_1"] = {
    name = "Intel Course 2021",
    description = "Simple python project",
    file_name = "POO/main.py"
  },
  ["~/deno/example"] = {
    name = "ExapleDeno",
    description = "Project with deno using other command",
    file_name = "http/main.ts",
    command = "deno run --allow-net"
  },
  ["~/cpp/example"] = {
    name = "ExapleCpp",
    description = "Project with make file",
    command = "make buid && cd buid/ && ./compiled_file"
  },
  ["~/private/.*terraform%-prod.-/.-"] = {
    name = "ExampleTerraform",
    description = "All Folders in ~/private containing \"terraform-prod\"",
    command = "terraform plan",
  },
},

See the docs for more info.

About

Cool Looking Neovim Config

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages