Compare commits
5 Commits
b5b48016ef
...
33542630d5
Author | SHA1 | Date |
---|---|---|
|
33542630d5 | |
|
7c44c1cd4e | |
|
bc62524451 | |
|
e70f6f6a5f | |
|
55306b1d6f |
9
.bashrc
9
.bashrc
|
@ -48,11 +48,6 @@ export MANWIDTH=80
|
|||
export PAGER=nvimpager
|
||||
# }}}
|
||||
|
||||
# Nvm
|
||||
export PATH=~/.nvm/versions/node/v14.16.0/bin:$PATH
|
||||
export NVM_DIR="$HOME/.nvm"
|
||||
[[ -s "$NVM_DIR/nvm.sh" ]] && . "$NVM_DIR/nvm.sh" --no-use
|
||||
|
||||
# X11 {{{
|
||||
export XDG_SESSION_TYPE=X11
|
||||
export XDG_CONFIG_HOME=$HOME/.config
|
||||
|
@ -86,10 +81,6 @@ else
|
|||
fi
|
||||
# }}}
|
||||
|
||||
# Node {{{
|
||||
. /usr/share/nvm/init-nvm.sh
|
||||
# }}}
|
||||
|
||||
# Go {{{
|
||||
export GOPATH="${XDG_DATA_HOME}/go"
|
||||
# }}}
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
[general]
|
||||
import = [
|
||||
"font.toml",
|
||||
"colors.toml"
|
||||
"themes/zenwritten_light.toml"
|
||||
]
|
||||
|
||||
[window]
|
||||
|
|
|
@ -0,0 +1,25 @@
|
|||
# This file is auto-generated by shipwright.nvim
|
||||
[colors.bright]
|
||||
black = "#3D3839"
|
||||
red = "#E8838F"
|
||||
green = "#8BAE68"
|
||||
yellow = "#D68C67"
|
||||
blue = "#61ABDA"
|
||||
magenta = "#CF86C1"
|
||||
cyan = "#65B8C1"
|
||||
white = "#8E8E8E"
|
||||
[colors.cursor]
|
||||
cursor = "#C9C9C9"
|
||||
text = "#191919"
|
||||
[colors.normal]
|
||||
black = "#191919"
|
||||
blue = "#6099C0"
|
||||
cyan = "#66A5AD"
|
||||
green = "#819B69"
|
||||
magenta = "#B279A7"
|
||||
red = "#DE6E7C"
|
||||
white = "#BBBBBB"
|
||||
yellow = "#B77E64"
|
||||
[colors.primary]
|
||||
background = "#191919"
|
||||
foreground = "#BBBBBB"
|
|
@ -0,0 +1,25 @@
|
|||
# This file is auto-generated by shipwright.nvim
|
||||
[colors.bright]
|
||||
black = "#C6C3C3"
|
||||
red = "#94253E"
|
||||
green = "#3F5A22"
|
||||
yellow = "#803D1C"
|
||||
blue = "#1D5573"
|
||||
magenta = "#7B3B70"
|
||||
cyan = "#2B747C"
|
||||
white = "#5C5C5C"
|
||||
[colors.cursor]
|
||||
cursor = "#353535"
|
||||
text = "#EEEEEE"
|
||||
[colors.normal]
|
||||
black = "#EEEEEE"
|
||||
blue = "#286486"
|
||||
cyan = "#3B8992"
|
||||
green = "#4F6C31"
|
||||
magenta = "#88507D"
|
||||
red = "#A8334C"
|
||||
white = "#353535"
|
||||
yellow = "#944927"
|
||||
[colors.primary]
|
||||
background = "#EEEEEE"
|
||||
foreground = "#353535"
|
|
@ -4,3 +4,6 @@ require("keymaps")
|
|||
require("highlight")
|
||||
require("paq-setup")
|
||||
require("diagnostic")
|
||||
|
||||
-- vim.opt.background = "dark"
|
||||
-- vim.opt.laststatus = 3
|
||||
|
|
|
@ -0,0 +1,22 @@
|
|||
set searchengine d
|
||||
|
||||
set newtab about:blank
|
||||
set smoothscroll true
|
||||
|
||||
# Yank bindings
|
||||
bind ym clipboard yankmd
|
||||
bind yg composite js "git clone " + document.location.href.replace(/https?:\/\//,"git@").replace("/",":").replace(/$/,".git") | clipboard yank
|
||||
|
||||
# Search bindings
|
||||
unbind <C-f>
|
||||
bind / fillcmdline find
|
||||
bind ? fillcmdline find -?
|
||||
bind n findnext 1
|
||||
bind N findnext -1
|
||||
|
||||
bind j scrollline 4
|
||||
bind k scrollline -4
|
||||
|
||||
# Containerize facebook (source: https://github.com/tridactyl/tridactyl/blob/master/.tridactylrc)
|
||||
set auconcreatecontainer true
|
||||
autocontain facebook\.com facebook
|
Loading…
Reference in New Issue