-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.envvars
More file actions
47 lines (35 loc) · 1.35 KB
/
.envvars
File metadata and controls
47 lines (35 loc) · 1.35 KB
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
#!/usr/bin/env bash
# Update $PATH to extend settings
# Enable persistent REPL history for `node`.
export NODE_REPL_HISTORY=~/.node_history
# Allow 32³ entries; the default is 1000.
export NODE_REPL_HISTORY_SIZE='32768'
# Use sloppy mode by default, matching web browsers.
export NODE_REPL_MODE='sloppy'
# Make Python use UTF-8 encoding for output to stdin, stdout, and stderr.
export PYTHONIOENCODING='UTF-8'
# Increase Bash history size. Allow 32³ entries; the default is 500.
export HISTSIZE='32768'
export HISTFILESIZE="${HISTSIZE}"
# Omit duplicates and commands that begin with a space from history.
export HISTCONTROL='ignoreboth'
# # Deprecated
# # Prefer US English and use UTF-8.
# export LANG='en_US.UTF-8'
# export LC_ALL='en_US.UTF-8'
# Highlight section titles in manual pages.
export LESS_TERMCAP_md="${yellow}"
# colored GCC warnings and errors
export GCC_COLORS='error=01;31:warning=01;35:note=01;36:caret=01;32:locus=01:quote=01'
# default editor
# <C-x> + <C-e> to edit current command in $EDITOR
# or `fc` to edit last command in $EDITOR
export EDITOR=nvim
# Open Man page in nvim instead of less for readability and navigation
export MANPAGER='nvim +Man!'
# nvim theme, can be overrided by the one in .extra
export NVIM_THEME=catppuccin-mocha
# ibus vietnamese typing
export GTK_IM_MODULE=ibus
export XMODIFIERS=@im=ibus
export QT_IM_MODULE=ibus