Initial commit
This commit is contained in:
13
config_in/activate.sh
Executable file
13
config_in/activate.sh
Executable file
@@ -0,0 +1,13 @@
|
||||
#!/bin/bash
|
||||
|
||||
export MB_ENV_BASE=$(pwd)
|
||||
|
||||
export XDG_CONFIG_HOME=${MB_ENV_BASE}/config
|
||||
export XDG_DATA_HOME=${MB_ENV_BASE}/local/share
|
||||
export PATH=${MB_ENV_BASE}/bin:${PATH}
|
||||
export TERM=xterm-256color
|
||||
|
||||
|
||||
|
||||
|
||||
${MB_ENV_BASE}/bin/fish.sh
|
||||
19
config_in/fish/config.fish
Normal file
19
config_in/fish/config.fish
Normal file
@@ -0,0 +1,19 @@
|
||||
if status is-interactive
|
||||
# Commands to run in interactive sessions can go here
|
||||
end
|
||||
|
||||
function fish_user_key_bindings
|
||||
for mode in insert default visual
|
||||
bind -M $mode \cf forward-char
|
||||
end
|
||||
bind -M insert jk "if commandline -P; commandline -f cancel; else; set fish_bind_mode default; commandline -f backward-char force-repaint; end"
|
||||
end
|
||||
|
||||
set -x VIRTUAL_ENV_DISABLE_PROMPT 1
|
||||
|
||||
set -x theme_color_scheme nord
|
||||
set -x theme_nerd_fonts yes
|
||||
set -x fish_prompt_pwd_dir_length 0
|
||||
|
||||
fish_vi_key_bindings
|
||||
fish_user_key_bindings
|
||||
14
config_in/nvim/init.vim
Normal file
14
config_in/nvim/init.vim
Normal file
@@ -0,0 +1,14 @@
|
||||
" goto normal mode with jk
|
||||
inoremap jk <ESC>
|
||||
|
||||
" remove search highlighting when pressing esc
|
||||
map <esc> :noh <CR>
|
||||
|
||||
|
||||
|
||||
" --------- Plugins ----------
|
||||
call plug#begin()
|
||||
|
||||
Plug 'justinmk/vim-sneak'
|
||||
|
||||
call plug#end()
|
||||
2
config_in/omf/bundle
Normal file
2
config_in/omf/bundle
Normal file
@@ -0,0 +1,2 @@
|
||||
theme bobthefish
|
||||
theme default
|
||||
1
config_in/omf/channel
Normal file
1
config_in/omf/channel
Normal file
@@ -0,0 +1 @@
|
||||
stable
|
||||
1
config_in/omf/theme
Normal file
1
config_in/omf/theme
Normal file
@@ -0,0 +1 @@
|
||||
bobthefish
|
||||
Reference in New Issue
Block a user