-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfigure shell & terminal
49 lines (35 loc) · 1.1 KB
/
configure shell & terminal
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
1. Create alacritty.yml file inside ~/.config/alacritty
2. Install npm for Alacritty themes & run
npx alacritty-themes --create //optional
npx alacritty-themes //select themes
I prefer Dracula theme.
Now you can uninstall npm if you want.
3. Alacritty configurations
# Alacritty background opacity, write:
background_opacity: 0.90
#Alacritty Window size:
window:
dimensions:
columns: 70
lines: 25
4. Change fish behaviour:
fish_config theme list //I prefer Lava theme.
fish_config theme choose <>
fish_config theme save
fish_config prompt list //I prefer scalars.
fish_config prompt choose <>
fish_config prompt save
5.Installed nuShell
sudo dnf install nushell //installed from third party
5. Managing two shells to open with Alacritty
alacritty -e fish //Launch alacritty with fish shell
alacritty -e nu //Launch alacritty with nushell
6. Starship configs
add_newline = false
format = """
[$directory](bold cyan)($git_branch$git_state$git_status)
$hostname $username [-»](bold green) """
[line_break]
disabled = true
[character]
success_symbol = "[~>](bold green)"