This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
return { | |
{ | |
"neovim/nvim-lspconfig", | |
opts = { | |
inlay_hints = { enabled = false }, | |
}, | |
}, | |
{ | |
"folke/snacks.nvim", | |
---@type snacks.Config |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
return { | |
-- add gruvbox | |
{ "ellisonleao/gruvbox.nvim" }, | |
-- Configure LazyVim to load gruvbox | |
{ | |
"LazyVim/LazyVim", | |
opts = { | |
colorscheme = "gruvbox", | |
}, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
-- 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() |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[font] | |
normal.family = "FiraMono Nerd Font Mono" | |
[window] | |
dynamic_title = false | |
startup_mode = "Maximized" | |
[cursor] | |
style.blinking = "On" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |