Compare commits
No commits in common. "33542630d56a94146ee791e42216566a17e755a7" and "b5b48016ef9ceb2f0d1591ee0fbe987523741df4" have entirely different histories.
33542630d5
...
b5b48016ef
9
.bashrc
9
.bashrc
|
@ -48,6 +48,11 @@ export MANWIDTH=80
|
||||||
export PAGER=nvimpager
|
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 {{{
|
# X11 {{{
|
||||||
export XDG_SESSION_TYPE=X11
|
export XDG_SESSION_TYPE=X11
|
||||||
export XDG_CONFIG_HOME=$HOME/.config
|
export XDG_CONFIG_HOME=$HOME/.config
|
||||||
|
@ -81,6 +86,10 @@ else
|
||||||
fi
|
fi
|
||||||
# }}}
|
# }}}
|
||||||
|
|
||||||
|
# Node {{{
|
||||||
|
. /usr/share/nvm/init-nvm.sh
|
||||||
|
# }}}
|
||||||
|
|
||||||
# Go {{{
|
# Go {{{
|
||||||
export GOPATH="${XDG_DATA_HOME}/go"
|
export GOPATH="${XDG_DATA_HOME}/go"
|
||||||
# }}}
|
# }}}
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
[general]
|
[general]
|
||||||
import = [
|
import = [
|
||||||
"font.toml",
|
"font.toml",
|
||||||
"themes/zenwritten_light.toml"
|
"colors.toml"
|
||||||
]
|
]
|
||||||
|
|
||||||
[window]
|
[window]
|
||||||
|
|
|
@ -1,25 +0,0 @@
|
||||||
# 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"
|
|
|
@ -1,25 +0,0 @@
|
||||||
# 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,6 +4,3 @@ require("keymaps")
|
||||||
require("highlight")
|
require("highlight")
|
||||||
require("paq-setup")
|
require("paq-setup")
|
||||||
require("diagnostic")
|
require("diagnostic")
|
||||||
|
|
||||||
-- vim.opt.background = "dark"
|
|
||||||
-- vim.opt.laststatus = 3
|
|
||||||
|
|
|
@ -1,22 +0,0 @@
|
||||||
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