zshify 1.1.1 → 1.1.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +16 -14
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -6,18 +6,18 @@ Zshify is a minimalistic, one command installation to customize the prompt of yo
|
|
|
6
6
|
|
|
7
7
|
## Installation
|
|
8
8
|
|
|
9
|
-
Installation is done using the [`npx`
|
|
10
|
-
|
|
11
|
-
```zsh
|
|
12
|
-
bunx zshify
|
|
13
|
-
```
|
|
9
|
+
Installation is done using the [`npx`](https://docs.npmjs.com/getting-started/installing-npm-packages-locally) command:
|
|
14
10
|
|
|
15
11
|
```zsh
|
|
16
12
|
npx zshify
|
|
17
13
|
```
|
|
18
14
|
|
|
15
|
+
Alternatively, you can install using `bunx`.
|
|
16
|
+
|
|
19
17
|
Yeah that's it, no downloads, no hassle. A minimalistic installation for the minimalistic package.
|
|
20
18
|
|
|
19
|
+
> See advanced section to to enrich your terminal experience with autosuggestions, history search and syntax highlighting .
|
|
20
|
+
|
|
21
21
|
## Why Zshify?
|
|
22
22
|
|
|
23
23
|
Aren't you tired of your default Zsh prompt looking like this? Cluttered, ugly and slow?
|
|
@@ -28,7 +28,16 @@ Appearing over and over again with the usual boring info? Like you really want t
|
|
|
28
28
|
|
|
29
29
|
Why not change it to it's minimal version? And that too with colors!
|
|
30
30
|
|
|
31
|
-
##
|
|
31
|
+
## Some addition feature / useful aliases and functions are added as default
|
|
32
|
+
|
|
33
|
+
### Adanced
|
|
34
|
+
|
|
35
|
+
```sh
|
|
36
|
+
# to enrich your terminal experience run this command after installing brew
|
|
37
|
+
brew install zsh-autosuggestions zsh-history-substring-search zsh-syntax-highlighting
|
|
38
|
+
```
|
|
39
|
+
|
|
40
|
+
### Alias
|
|
32
41
|
|
|
33
42
|
```sh
|
|
34
43
|
# open files and folders in vscode
|
|
@@ -43,7 +52,7 @@ alias hide="defaults write com.apple.finder CreateDesktop false && killall Finde
|
|
|
43
52
|
alias show="defaults write com.apple.finder CreateDesktop true && killall Finder"
|
|
44
53
|
```
|
|
45
54
|
|
|
46
|
-
|
|
55
|
+
### Functions
|
|
47
56
|
|
|
48
57
|
```sh
|
|
49
58
|
# close any application running on a port
|
|
@@ -64,10 +73,3 @@ mkrepo || mkrepo --public
|
|
|
64
73
|
# rename current directory to new name
|
|
65
74
|
rename "newName"
|
|
66
75
|
```
|
|
67
|
-
|
|
68
|
-
## Adanced
|
|
69
|
-
|
|
70
|
-
```sh
|
|
71
|
-
# to enrich your terminal experience run this command after installing brew
|
|
72
|
-
brew install zsh-syntax-highlightingzsh-autosuggestionszsh-history-substring-search
|
|
73
|
-
```
|