Skip to content

Instantly share code, notes, and snippets.

View itsCodingThing's full-sized avatar
😌
Focusing

Bhanu Pratap Singh itsCodingThing

😌
Focusing
View GitHub Profile
return {
{
"neovim/nvim-lspconfig",
opts = {
inlay_hints = { enabled = false },
},
},
{
"folke/snacks.nvim",
---@type snacks.Config
@itsCodingThing
itsCodingThing / itscodingthing.lua
Last active March 19, 2025 20:07
lazyvim some custom settings
return {
-- add gruvbox
{ "ellisonleao/gruvbox.nvim" },
-- Configure LazyVim to load gruvbox
{
"LazyVim/LazyVim",
opts = {
colorscheme = "gruvbox",
},
@itsCodingThing
itsCodingThing / .wezterm.lua
Last active November 11, 2024 19:39
wezterm config file
-- Pull in the wezterm API
local wezterm = require("wezterm")
wezterm.on('format-window-title', function ()
return 'Wezterm'
end)
-- This will hold the configuration.
local config = wezterm.config_builder()
@itsCodingThing
itsCodingThing / alacritty.toml
Created October 8, 2024 16:45
Allacritty terminal config
[font]
normal.family = "FiraMono Nerd Font Mono"
[window]
dynamic_title = false
startup_mode = "Maximized"
[cursor]
style.blinking = "On"
@itsCodingThing
itsCodingThing / git.txt
Created June 2, 2023 07:41
Git commands
1. git log --since=2.weeks
2. git log --abbrev-commit // git log --pretty=oneline
3. git log --graph --abbrev-commit --decorate --date=relative --all
4. git log --all --decorate --oneline --graph