16 lines
210 B
Text
16 lines
210 B
Text
# Ignore everything
|
|
/*
|
|
|
|
# Don't ignore the .gitignore file itself
|
|
!.gitignore
|
|
|
|
# Don't ignore specific folders
|
|
!hypr/
|
|
!nvim/
|
|
!waybar/
|
|
|
|
# Don't ignore contents inside those folders
|
|
!hypr/**
|
|
!nvim/**
|
|
!waybar/**
|
|
|