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
|
!/.bootstrap.sh
|
||||||
|
|
||||||
# readme.
|
# Readme.
|
||||||
!/.README.md
|
!/.README.md
|
||||||
|
|
||||||
# git.
|
# Git.
|
||||||
!/.gitignore
|
!/.gitignore
|
||||||
!/.gitconfig
|
!/.gitconfig
|
||||||
|
|
||||||
# Editorconfig.
|
# Editorconfig.
|
||||||
!/.editorconfig
|
!/.editorconfig
|
||||||
|
|
||||||
# bash.
|
# Bash.
|
||||||
!/.bashrc
|
!/.bashrc
|
||||||
|
|
||||||
# Doc.
|
# Doc.
|
||||||
!/.doc/
|
!/.doc/
|
||||||
!/.doc/**
|
!/.doc/**
|
||||||
|
|
||||||
# dir structure
|
# Dir structure.
|
||||||
!/app/
|
!/app/
|
||||||
/app/*
|
/app/*
|
||||||
!/app/.dir
|
!/app/.dir
|
||||||
|
@ -46,18 +46,18 @@
|
||||||
/tmp/*
|
/tmp/*
|
||||||
!/tmp/.dir
|
!/tmp/.dir
|
||||||
|
|
||||||
# bash
|
# Bash.
|
||||||
!/.bash_profile
|
!/.bash_profile
|
||||||
|
|
||||||
# bin
|
# Bin.
|
||||||
!/app/bin/
|
!/app/bin/
|
||||||
!/app/bin/**
|
!/app/bin/**
|
||||||
|
|
||||||
# system configs
|
# System configs.
|
||||||
!/.config/
|
!/.config/
|
||||||
/.config/*
|
/.config/*
|
||||||
|
|
||||||
# linux configs
|
# Linux configs.
|
||||||
!/.config/linux/
|
!/.config/linux/
|
||||||
!/.config/linux/**
|
!/.config/linux/**
|
||||||
|
|
||||||
|
@ -77,54 +77,54 @@
|
||||||
!/.config/nix/
|
!/.config/nix/
|
||||||
!/.config/nix/**
|
!/.config/nix/**
|
||||||
|
|
||||||
## gtk-3.0
|
## Gtk-3.0.
|
||||||
!/.config/gtk-3.0/
|
!/.config/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/
|
||||||
!/.config/gtk-4.0/**
|
!/.config/gtk-4.0/**
|
||||||
|
|
||||||
## btop settings
|
## Btop settings.
|
||||||
!/.config/btop/
|
!/.config/btop/
|
||||||
!/.config/btop/btop.conf
|
!/.config/btop/btop.conf
|
||||||
|
|
||||||
## htop settings
|
## Htop settings.
|
||||||
!/.config/htop/
|
!/.config/htop/
|
||||||
!/.config/htop/**
|
!/.config/htop/**
|
||||||
|
|
||||||
## user dirs
|
## User dirs.
|
||||||
!/.config/user-dirs.dirs
|
!/.config/user-dirs.dirs
|
||||||
|
|
||||||
## nvim
|
## Nvim.
|
||||||
!/.config/nvim/
|
!/.config/nvim/
|
||||||
!/.config/nvim/**
|
!/.config/nvim/**
|
||||||
/.config/nvim/plugin/
|
/.config/nvim/plugin/
|
||||||
|
|
||||||
# ssh
|
# Ssh.
|
||||||
!/.ssh/
|
!/.ssh/
|
||||||
/.ssh/**
|
/.ssh/**
|
||||||
|
|
||||||
## ssh config
|
## Ssh config.
|
||||||
!/.ssh/config
|
!/.ssh/config
|
||||||
|
|
||||||
# local configs
|
# Local configs.
|
||||||
!/.local/
|
!/.local/
|
||||||
/.local/*
|
/.local/*
|
||||||
!/.local/share/
|
!/.local/share/
|
||||||
/.local/share/*
|
/.local/share/*
|
||||||
|
|
||||||
## background
|
## Background.
|
||||||
!/.local/share/backgrounds/
|
!/.local/share/backgrounds/
|
||||||
!/.local/share/backgrounds/background.jpg
|
!/.local/share/backgrounds/background.jpg
|
||||||
|
|
||||||
## flatpak overrides
|
## Flatpak overrides.
|
||||||
!/.local/share/flatpak/
|
!/.local/share/flatpak/
|
||||||
/.local/share/flatpak/*
|
/.local/share/flatpak/*
|
||||||
!/.local/share/flatpak/overrides/
|
!/.local/share/flatpak/overrides/
|
||||||
!/.local/share/flatpak/overrides/**
|
!/.local/share/flatpak/overrides/**
|
||||||
|
|
||||||
# fonts
|
# Fonts.
|
||||||
!/.local/share/fonts/
|
!/.local/share/fonts/
|
||||||
!/.local/share/fonts/**
|
!/.local/share/fonts/**
|
||||||
/.local/share/fonts/**/.uuid
|
/.local/share/fonts/**/.uuid
|
||||||
|
|
Reference in a new issue