Coder Social home page Coder Social logo

ecthelionvi / neocolumn.nvim Goto Github PK

View Code? Open in Web Editor NEW
87.0 87.0 1.0 59 KB

Neovim plugin that highlights individual characters with a toggleable ColorColumn.

License: MIT License

Lua 100.00%
colorcolumn lua neovim neovim-plugin nvim nvim-plugin

neocolumn.nvim's Introduction

Hello ๐Ÿ‘‹

Full Stack Software Developer, credited with 5 years of progressive experience which includes developing and deploying software quickly, work well navigating independently or within a team environment, serve as a life-long-learner and thrive in challenging technical environments

Technical proficiency includes HTML, CSS, Java, Python, JavaScript, Postgres SQL, React, Django

neocolumn.nvim's People

Contributors

ecthelionvi avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar

Forkers

wsdjeg

neocolumn.nvim's Issues

a string cannot be given to custom_NeoColumn as seen in README.md

Hey, I was checking the plugin and have an issue when I set a string in custom_NeoColumn:

custom_NeoColumn = {
  go = "100",
}

The README.md states that a string can be given:

image

but there is no string handling in NeoColumn.lua:

      if config.custom_NeoColumn[filetype] then
        for _, v in ipairs(config.custom_NeoColumn[filetype]) do
          fn.matchadd("ColorColumn", "\\%" .. v .. "v.", 100)
        end
      else
        for _, v in ipairs(NeoColumn_value) do
          fn.matchadd("ColorColumn", "\\%" .. v .. "v.", 100)
        end
      end

ipairs expects a table and not a string.

Thanks

Feature: Option for filetypes to ignore

I didn't see anything listed in the options, but for some stuff like file trees, lazy/packer, etc. it would be nice to have this plugin not apply the column. (roughly) Similar plugins do have this functionality, so there is some precedent. Thanks!

Setup doesn't work as expected?

Hi, first of all thanks for the great plugin!

One thing I noticed, I was only able to make my custom setting to go through if I set the value of vim.g.neocolumn_setup to false before calling the setup function, like this:

local status, neocolumn = pcall(require, "NeoColumn")
if not status then
	return
end

vim.g.neocolumn_setup = false

neocolumn.setup({
	fg_color = colorscheme.base01,
	bg_color = colorscheme.base09,
	NeoColumn = { "80", "120" },
})

Is this the intended behavior?

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.