Compare commits
5 commits
da85aae20a
...
ba8d9dd36e
Author | SHA1 | Date | |
---|---|---|---|
ba8d9dd36e | |||
efa4e5ab4b | |||
36c47f574b | |||
1e09da54ca | |||
a81e6394d3 |
6 changed files with 19 additions and 5 deletions
2
home/private_dot_config/direnv/config.toml
Normal file
2
home/private_dot_config/direnv/config.toml
Normal file
|
@ -0,0 +1,2 @@
|
|||
[global]
|
||||
hide_env_diff = true
|
|
@ -3,6 +3,7 @@
|
|||
"Visual Studio Code": "",
|
||||
"vivaldi-stable": "",
|
||||
"google-chrome": "",
|
||||
"chromium-browser": "",
|
||||
"LibreOffice": "",
|
||||
"Geneious Prime": "",
|
||||
"Firefox": "",
|
||||
|
|
|
@ -1,5 +1,6 @@
|
|||
border-radius=5
|
||||
font=monospace 10
|
||||
height=500
|
||||
|
||||
# Colors
|
||||
background-color=#1e1e2e
|
||||
|
|
|
@ -10,5 +10,12 @@ vim.opt.timeoutlen = 200
|
|||
|
||||
vim.g.autoformat = false
|
||||
|
||||
|
||||
-- make .roc files have the correct filetype
|
||||
vim.api.nvim_create_autocmd({ "BufEnter", "BufWinEnter" }, {
|
||||
pattern = { "*.roc" },
|
||||
command = "set filetype=roc",
|
||||
})
|
||||
|
||||
-- https://github.com/ziglang/zig.vim/issues/51#issuecomment-1637180522
|
||||
vim.g.zig_fmt_autosave = 0
|
||||
|
|
|
@ -53,3 +53,5 @@ UMI
|
|||
conda
|
||||
barcoding
|
||||
Al'Khafaji
|
||||
Zig
|
||||
Roc
|
||||
|
|
|
@ -3,12 +3,13 @@
|
|||
export EZA_COLORS="da=37"
|
||||
export EZA_MIN_LUMINANCE=50
|
||||
|
||||
alias ls='eza --icons'
|
||||
alias l='eza -lbF --git --icons'
|
||||
alias llm='eza -lbGd --git --sort=modified --icons'
|
||||
alias lx='eza -lbhHigUmuSa@ --time-style=long-iso --git --color-scale --icons'
|
||||
is-tty || alias eza="eza --icons"
|
||||
alias ls='eza'
|
||||
alias l='eza -lbF --git'
|
||||
alias llm='eza -lbGd --git --sort=modified'
|
||||
alias lx='eza -lbhHigUmuSa@ --time-style=long-iso --git --color-scale'
|
||||
|
||||
alias lS='eza -1'
|
||||
alias lt='eza --tree --level=2 --icons'
|
||||
alias lt='eza --tree --level=2'
|
||||
alias l.="eza -a | grep -E '^\.'"
|
||||
|
||||
|
|
Loading…
Reference in a new issue