This commit is contained in:
Marco Thomas
2020-10-09 08:38:28 +02:00
parent 45319bb1a9
commit 6e6d932156
5 changed files with 22 additions and 1416 deletions

View File

@@ -64,7 +64,7 @@
frame_width = 2
# Defines color of the frame around the notification window.
frame_color = "#ffffff"
frame_color = "#98c379"
# Define a color for the separator.
# possible values are:

View File

@@ -172,7 +172,7 @@ client.unfocused $termbg $termbg #ffffff $termbg $termbg
client.urgent $red $red #ffffff $red $red
client.background #ffffff
gaps inner 0
gaps inner 8
# ============================== Start
# Keyboard layout

File diff suppressed because one or more lines are too long

View File

@@ -27,8 +27,8 @@ endif
if has ("nvim")
Plug 'neovim/nvim-lspconfig' " LSP
Plug 'Shougo/neosnippet.vim'
Plug 'Shougo/neosnippet-snippets'
Plug 'Shougo/neosnippet.vim' " Snippet support
Plug 'Shougo/neosnippet-snippets' " Actual snippets
Plug 'nvim-lua/completion-nvim' " Fancy autocomplete
endif
@@ -49,7 +49,6 @@ set cursorline
set ruler
set showmatch " highlights paranthesis
set laststatus=2 " remove status bar
set mat=5
set noswapfile " can be problematic on some systems
set confirm " can't quit without saving
@@ -62,6 +61,22 @@ set backspace=indent,eol,start
set wildmenu " autocomplete :e
set scrolloff=7 " min lines aboive or below the cursor
" ============================== Statusline
set laststatus=2
set statusline=
hi User1 guibg=NONE
" Left Side
set statusline +=%1*%F " full path
set statusline +=%1*\ %m " modified flag
" Right Side
set statusline +=%1*%=%y " file type
set statusline +=%1*\ %c " column
set statusline +=%1*%5l " current line
set statusline +=%1*/%L " total lines
" ============================== Indents and Whitespaces
set list
set listchars=tab:»\ ,extends:,precedes:,nbsp,trail

View File

@@ -150,3 +150,5 @@ bindkey '^Z' fancy-ctrl-z
if [ -f ~/.zsh-highlighting/zsh-syntax-highlighting.zsh ]; then
source $HOME/.zsh-highlighting/zsh-syntax-highlighting.zsh
fi
source /usr/share/zsh/plugins/zsh-history-substring-search/zsh-history-substring-search.zsh