Skip to content

Adds the sus emoji on lines when it finds the words "sus" in them

License

Notifications You must be signed in to change notification settings

TarunDaCoder/sus.nvim

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

29 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

sus.nvim

About

sus.nvim is a simple plugin that shows a sus icon in your signcolumn. When it finds the word 'sus' written in that line.

Screenshot

Screenshot

Installation

:Rocks install sus.nvim

{
    'TarunDaCoder/sus.nvim',
    opts = {}
}
-- Add this to your init.lua
use {
    'TarunDaCoder/sus.nvim',
    config = function()
        require('sus').setup()
    end
}
" Add this to your init.vim
Plug 'TarunDaCoder/sus.nvim'

lua require('sus').setup()

Config options

NOTE: The sus icon and text are the default settings, change it if u want to

You can change the icon to whatever icon you like by changing the sus_icon variable

vim.g.sus_icon = "🦆" -- For all you duck lovers out there

You can change the text to whatever text you like by changing the sus_text variable

vim.g.sus_text = "duck"

Credits