Updoot
This commit is contained in:
@@ -64,7 +64,7 @@
|
|||||||
frame_width = 2
|
frame_width = 2
|
||||||
|
|
||||||
# Defines color of the frame around the notification window.
|
# Defines color of the frame around the notification window.
|
||||||
frame_color = "#ffffff"
|
frame_color = "#98c379"
|
||||||
|
|
||||||
# Define a color for the separator.
|
# Define a color for the separator.
|
||||||
# possible values are:
|
# possible values are:
|
||||||
|
|||||||
@@ -172,7 +172,7 @@ client.unfocused $termbg $termbg #ffffff $termbg $termbg
|
|||||||
client.urgent $red $red #ffffff $red $red
|
client.urgent $red $red #ffffff $red $red
|
||||||
client.background #ffffff
|
client.background #ffffff
|
||||||
|
|
||||||
gaps inner 0
|
gaps inner 8
|
||||||
|
|
||||||
# ============================== Start
|
# ============================== Start
|
||||||
# Keyboard layout
|
# Keyboard layout
|
||||||
|
|||||||
File diff suppressed because one or more lines are too long
21
files/.vimrc
21
files/.vimrc
@@ -27,8 +27,8 @@ endif
|
|||||||
|
|
||||||
if has ("nvim")
|
if has ("nvim")
|
||||||
Plug 'neovim/nvim-lspconfig' " LSP
|
Plug 'neovim/nvim-lspconfig' " LSP
|
||||||
Plug 'Shougo/neosnippet.vim'
|
Plug 'Shougo/neosnippet.vim' " Snippet support
|
||||||
Plug 'Shougo/neosnippet-snippets'
|
Plug 'Shougo/neosnippet-snippets' " Actual snippets
|
||||||
Plug 'nvim-lua/completion-nvim' " Fancy autocomplete
|
Plug 'nvim-lua/completion-nvim' " Fancy autocomplete
|
||||||
endif
|
endif
|
||||||
|
|
||||||
@@ -49,7 +49,6 @@ set cursorline
|
|||||||
set ruler
|
set ruler
|
||||||
|
|
||||||
set showmatch " highlights paranthesis
|
set showmatch " highlights paranthesis
|
||||||
set laststatus=2 " remove status bar
|
|
||||||
set mat=5
|
set mat=5
|
||||||
set noswapfile " can be problematic on some systems
|
set noswapfile " can be problematic on some systems
|
||||||
set confirm " can't quit without saving
|
set confirm " can't quit without saving
|
||||||
@@ -62,6 +61,22 @@ set backspace=indent,eol,start
|
|||||||
set wildmenu " autocomplete :e
|
set wildmenu " autocomplete :e
|
||||||
set scrolloff=7 " min lines aboive or below the cursor
|
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
|
" ============================== Indents and Whitespaces
|
||||||
set list
|
set list
|
||||||
set listchars=tab:»\ ,extends:›,precedes:‹,nbsp:·,trail:·
|
set listchars=tab:»\ ,extends:›,precedes:‹,nbsp:·,trail:·
|
||||||
|
|||||||
@@ -150,3 +150,5 @@ bindkey '^Z' fancy-ctrl-z
|
|||||||
if [ -f ~/.zsh-highlighting/zsh-syntax-highlighting.zsh ]; then
|
if [ -f ~/.zsh-highlighting/zsh-syntax-highlighting.zsh ]; then
|
||||||
source $HOME/.zsh-highlighting/zsh-syntax-highlighting.zsh
|
source $HOME/.zsh-highlighting/zsh-syntax-highlighting.zsh
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
source /usr/share/zsh/plugins/zsh-history-substring-search/zsh-history-substring-search.zsh
|
||||||
|
|||||||
Reference in New Issue
Block a user