-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into editor-config
- Loading branch information
Showing
16 changed files
with
1,074 additions
and
489 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,11 @@ | ||
.lsp-session-v1 | ||
elpa/ | ||
init.elc | ||
snippets/ | ||
backup/ | ||
request/ | ||
var | ||
zsh_plugin/ | ||
### iterm ### | ||
config/iterm2/AppSupport | ||
.zcomp* | ||
|
||
### Local settings ### | ||
*.local | ||
local.* | ||
!local.*.sample | ||
|
||
### Zsh cache ### | ||
*.zwc | ||
.zcomp* |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,18 @@ | ||
## my_dotfiles | ||
- My dotfiles | ||
- https://wiki.archlinux.org/title/XDG_Base_Directory | ||
# dotfiles | ||
|
||
- My dotfiles: config files and build scripts. | ||
- I follow the design specified in [XDG_Base_Directory](https://wiki.archlinux.org/title/XDG_Base_Directory). | ||
|
||
## Requires | ||
|
||
- [sheldon](https://github.com/rossmacarthur/sheldon) | ||
- Shell plugin manager. | ||
- Install sheldon using one of the install options you prefer. | ||
- [Deno](https://deno.com/) | ||
- [zeno.zsh](https://github.com/yuki-yano/zeno.zsh) uses deno. | ||
- Install deno using one of the install options you prefer. | ||
|
||
## Install | ||
```shell | ||
curl -sL https://raw.githubusercontent.com/ShuN6211/dotfiles/refs/heads/main/install.sh | sh | ||
``` |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,57 @@ | ||
# EditorConfig is awesome: https://EditorConfig.org | ||
|
||
# top-most EditorConfig file | ||
root = true | ||
|
||
# Unix-style newlines with a newline ending every file | ||
[*] | ||
indent_style = space | ||
indent_size = 4 | ||
end_of_line = lf | ||
charset = utf-8 | ||
trim_trailing_whitespace = true | ||
insert_final_newline = true | ||
|
||
[*.md] | ||
indent_style = space | ||
indent_size = 4 | ||
trim_trailing_whitespace = false | ||
|
||
[*.html] | ||
indent_style = space | ||
indent_size = 2 | ||
|
||
[*.{css,scss}] | ||
indent_style = space | ||
indent_size = 2 | ||
|
||
[*.json] | ||
indent_style = space | ||
indent_size = 2 | ||
|
||
[*.{yml,yaml}] | ||
indent_style = space | ||
indent_size = 2 | ||
|
||
# 4 space indentation | ||
[*.py] | ||
indent_style = space | ||
indent_size = 4 | ||
|
||
[*.{js,ts}] | ||
indent_style = space | ||
indent_size = 2 | ||
|
||
# Tab indentation (no size specified) | ||
[Makefile] | ||
indent_style = tab | ||
|
||
[{*.sh,*.bash,*.zsh,.zsh*,.bash*}] | ||
indent_style = space | ||
indent_size = 4 | ||
|
||
# The indent size used in the `package.json` file cannot be changed | ||
# https://github.com/npm/npm/pull/3180#issuecomment-16336516 | ||
[{.travis.yml,npm-shrinkwrap.json,package.json}] | ||
indent_style = space | ||
indent_size = 4 |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
/backup | ||
/eln-cache | ||
/elpa | ||
/savehist | ||
*.elc | ||
/custom.el | ||
/projects | ||
/transient | ||
/var | ||
/auto-save-list |
This file contains 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
Oops, something went wrong.