Gitignore : Update comments.
This commit is contained in:
parent
841fad2ad0
commit
2dd2a82468
42
.gitignore
vendored
42
.gitignore
vendored
|
@ -1,26 +1,26 @@
|
|||
*
|
||||
|
||||
# bootstrap.
|
||||
# Bootstrap.
|
||||
!/.bootstrap.sh
|
||||
|
||||
# readme.
|
||||
# Readme.
|
||||
!/.README.md
|
||||
|
||||
# git.
|
||||
# Git.
|
||||
!/.gitignore
|
||||
!/.gitconfig
|
||||
|
||||
# Editorconfig.
|
||||
!/.editorconfig
|
||||
|
||||
# bash.
|
||||
# Bash.
|
||||
!/.bashrc
|
||||
|
||||
# Doc.
|
||||
!/.doc/
|
||||
!/.doc/**
|
||||
|
||||
# dir structure
|
||||
# Dir structure.
|
||||
!/app/
|
||||
/app/*
|
||||
!/app/.dir
|
||||
|
@ -46,18 +46,18 @@
|
|||
/tmp/*
|
||||
!/tmp/.dir
|
||||
|
||||
# bash
|
||||
# Bash.
|
||||
!/.bash_profile
|
||||
|
||||
# bin
|
||||
# Bin.
|
||||
!/app/bin/
|
||||
!/app/bin/**
|
||||
|
||||
# system configs
|
||||
# System configs.
|
||||
!/.config/
|
||||
/.config/*
|
||||
|
||||
# linux configs
|
||||
# Linux configs.
|
||||
!/.config/linux/
|
||||
!/.config/linux/**
|
||||
|
||||
|
@ -77,54 +77,54 @@
|
|||
!/.config/nix/
|
||||
!/.config/nix/**
|
||||
|
||||
## gtk-3.0
|
||||
## Gtk-3.0.
|
||||
!/.config/gtk-3.0/
|
||||
!/.config/gtk-3.0/**
|
||||
|
||||
## gtk-4.0
|
||||
## Gtk-4.0.
|
||||
!/.config/gtk-4.0/
|
||||
!/.config/gtk-4.0/**
|
||||
|
||||
## btop settings
|
||||
## Btop settings.
|
||||
!/.config/btop/
|
||||
!/.config/btop/btop.conf
|
||||
|
||||
## htop settings
|
||||
## Htop settings.
|
||||
!/.config/htop/
|
||||
!/.config/htop/**
|
||||
|
||||
## user dirs
|
||||
## User dirs.
|
||||
!/.config/user-dirs.dirs
|
||||
|
||||
## nvim
|
||||
## Nvim.
|
||||
!/.config/nvim/
|
||||
!/.config/nvim/**
|
||||
/.config/nvim/plugin/
|
||||
|
||||
# ssh
|
||||
# Ssh.
|
||||
!/.ssh/
|
||||
/.ssh/**
|
||||
|
||||
## ssh config
|
||||
## Ssh config.
|
||||
!/.ssh/config
|
||||
|
||||
# local configs
|
||||
# Local configs.
|
||||
!/.local/
|
||||
/.local/*
|
||||
!/.local/share/
|
||||
/.local/share/*
|
||||
|
||||
## background
|
||||
## Background.
|
||||
!/.local/share/backgrounds/
|
||||
!/.local/share/backgrounds/background.jpg
|
||||
|
||||
## flatpak overrides
|
||||
## Flatpak overrides.
|
||||
!/.local/share/flatpak/
|
||||
/.local/share/flatpak/*
|
||||
!/.local/share/flatpak/overrides/
|
||||
!/.local/share/flatpak/overrides/**
|
||||
|
||||
# fonts
|
||||
# Fonts.
|
||||
!/.local/share/fonts/
|
||||
!/.local/share/fonts/**
|
||||
/.local/share/fonts/**/.uuid
|
||||
|
|
Reference in a new issue