Merge remote-tracking branch 'refs/remotes/origin/master'

This commit is contained in:
_N0x 2022-02-24 19:45:26 +01:00
commit 9ce9922227
2 changed files with 13 additions and 2 deletions

View File

@ -1,4 +1,4 @@
set fish_prompt_pwd_dir_length 1
set fish_prompt_pwd_dir_length 0
set __fish_git_prompt_show_informative_status 1
# Fish command and parameter colors
@ -54,7 +54,7 @@ function fish_prompt
_print_in_color "┏["$USER"@"(prompt_hostname)"]" blue
# current working dir
_print_in_color " "$PWD $fish_color_cwd
_print_in_color " "(prompt_pwd) $fish_color_cwd
__fish_git_prompt " (%s)"

View File

@ -18,6 +18,17 @@ vim.g.maplocalleader = " "
-- term_mode = "t",
-- command_mode = "c",
-- Disable Arrow keys to force myself to the Vim-Way of movement --
keymap("i", "<Up>", "<Nop>", opts)
keymap("i", "<Down>", "<Nop>", opts)
keymap("i", "<Left>", "<Nop>", opts)
keymap("i", "<Right>", "<Nop>", opts)
keymap("n", "<Up>", "<Nop>", opts)
keymap("n", "<Down>", "<Nop>", opts)
keymap("n", "<Left>", "<Nop>", opts)
keymap("n", "<Right>", "<Nop>", opts)
-- Remap some language specific stuff --
keymap("n", "ü", "{", opts)
keymap("n", "<C-ü>", "<C-{>", opts)