Skip to content

Instantly share code, notes, and snippets.

View daUnknownCoder's full-sized avatar
🎯
Typing...

StellarCoder daUnknownCoder

🎯
Typing...
  • Mumbai, India
  • 05:56 (UTC +05:30)
View GitHub Profile
@bassamsdata
bassamsdata / _Notes.md
Last active November 17, 2024 15:25
MiniFiles Git integration

Below is a code for Minifiles Git integration code snippet.

How to use it

Just insert the code below into this function in your Minifiles config:

config = function()
-- add the git code here
end
@Alee14
Alee14 / arch-0.1.md
Last active July 31, 2024 14:14
Installing Arch Linux 0.1 with X11
@windwp
windwp / media_preview.lua
Last active May 30, 2024 14:28
telescope media preview
local utils = require('telescope.utils')
local defaulter = utils.make_default_callable
local actions = require('telescope.actions')
local finders = require('telescope.finders')
local make_entry = require('telescope.make_entry')
local pickers = require('telescope.pickers')
local previewers = require('telescope.previewers')
local builtin = require('telescope.builtin')
local conf = require('telescope.config').values
local flatten = vim.tbl_flatten
@qoomon
qoomon / conventional-commits-cheatsheet.md
Last active November 18, 2024 23:14
Conventional Commits Cheatsheet

Conventional Commit Messages starline

See how a minor change to your commit message style can make a difference.

Tip

Have a look at git-conventional-commits , a CLI util to ensure these conventions, determine version and generate changelogs

Commit Message Formats

Default

@danopia
danopia / .bashrc
Created August 31, 2012 07:55
Clippy at the Linux CLI
function command_not_found_handle {
{echo "It looks like you're trying to run a UNIX command.";echo "Would you like some help with that?"; echo; /usr/lib/command-not-found $1 2>&1|fold -sw 55}|cowsay -f$HOME/.clippy -n
}