Initial commit

This commit is contained in:
Martin Bauer
2022-06-06 13:13:15 +02:00
commit a929bde64b
8 changed files with 140 additions and 0 deletions

13
config_in/activate.sh Executable file
View 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

View 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
View 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
View File

@@ -0,0 +1,2 @@
theme bobthefish
theme default

1
config_in/omf/channel Normal file
View File

@@ -0,0 +1 @@
stable

1
config_in/omf/theme Normal file
View File

@@ -0,0 +1 @@
bobthefish