Skip to content

Instantly share code, notes, and snippets.

View yeasinx's full-sized avatar
🐢
Some weird thing...

Yeasin Arafat yeasinx

🐢
Some weird thing...
View GitHub Profile
@yeasinx
yeasinx / README.md
Last active September 8, 2025 09:50
Fuzzy Finder (fzf) in NVIM

Setting Up and Using fzf.vim in Neovim

This note summarizes the steps to install and use fzf.vim in Neovim for efficient file navigation. It's minimal, clean, and focused on key actions. Assumes Ubuntu-like system (e.g., using apt).

Prerequisites

  • Neovim installed: sudo apt install neovim
  • fzf installed: sudo apt install fzf
  • ripgrep for faster searches (optional but recommended): sudo apt install ripgrep
  • bat for file previews (optional): sudo apt install bat
@yeasinx
yeasinx / settings.json
Last active March 10, 2025 00:35
Custom css for VSCode test customization
// Add this two lines in your VSCode settings
{
"vscode_custom_css.imports": [ "file://your-css-file-path" ],
"vscode_custom_css.policy": true
}
@yeasinx
yeasinx / git_shortcut.md
Last active April 17, 2025 10:10
Git Workflow with a "Lazy" Alias

Steps to Set Up the "Lazy" Alias

Open the Git Configuration File

On macOS or Linux, open your terminal and run:

git config --global --edit

On Windows, use: