Skip to content

Latest commit

 

History

History
46 lines (32 loc) · 736 Bytes

README.md

File metadata and controls

46 lines (32 loc) · 736 Bytes

CodeRunner.nvim

A simple plugin to directly run code in neovim

Installation

lazy.nvim

"Coptan99/CodeRunner.nvim"

packer.nvim

use "Coptan99/CodeRunner.nvim"

vim-plug

Plug "Coptan99/CodeRunner.nvim"

Supported files

  1. c
  2. cpp
  3. python

Usage

While opening the code file

:lua require("coderunner").runner()

Keymapping

Go to your .config/nvim and paste this

vim.keymap.set("n", "<leader>qq", ":lua require('runner').runner()")

Configure this for your needs

Contribution

Feel free to do PR with new ideas as I am still a noob :)