mirror of
https://github.com/olexsmir/dotfiles.git
synced 2026-01-15 16:51:34 +02:00
📝 Add keyboard indecator for qtile, dmne theme for rofi. Update nvim, ranger
This commit is contained in:
parent
4f3a929be0
commit
917b69171d
18 changed files with 195 additions and 88 deletions
26
config/nvim/README.md
Normal file
26
config/nvim/README.md
Normal file
|
|
@ -0,0 +1,26 @@
|
|||
# nvim
|
||||
|
||||

|
||||
---------------
|
||||
|
||||
To manage plugins, I use [vim plug](https://github.com/junegunn/vim-plug). I use the following plugins:
|
||||
- `nten16.vim`: Colorschemes
|
||||
- `lightline`: Status bar
|
||||
- `vim-indent-guides`: Visually displaying indent levels
|
||||
- `vim-easymotion`: Fast navigation
|
||||
- `nerdtree`: File manager
|
||||
- `vim-devicons`: Icons for nerdtree
|
||||
- `ctrlp.vim`: File saecher
|
||||
- `auto-pairs`: Close brackets, parens, quotes
|
||||
- `coc.nvim`: Instant completion
|
||||
- `emmet-vim`: Emmet :D
|
||||
- `vim-javascript`: Syntax support for JS
|
||||
- `i3-vim-syntax`: Syntax support for i3
|
||||
- `sxhkd-vim`: Syntax support for sxhkd
|
||||
- `vim-scheme`: Syntax support for scheme
|
||||
- `scss-syntax.vim`: Syntax support for scss
|
||||
- `vim-fist`: Syntax support for fish
|
||||
- `vim-css-color`: Color name highlighter
|
||||
- `vim-markdown`: Syntax support for fish
|
||||
- `markdown-preview.nvim`: Preview markdown in real-time
|
||||
- `vim-table-mode`: Automatic markdown table creator & formatter
|
||||
|
|
@ -1,8 +1,8 @@
|
|||
call plug#begin('~/.vim/plugged')
|
||||
Plug 'overcache/NeoSolarized'
|
||||
Plug 'ericbn/vim-solarized'
|
||||
Plug 'ryanoasis/vim-devicons'
|
||||
Plug 'itchyny/lightline.vim'
|
||||
Plug 'nathanaelkane/vim-indent-guides'
|
||||
Plug 'Smirnov-O/nten16.vim'
|
||||
Plug 'iamcco/markdown-preview.nvim'
|
||||
Plug 'dhruvasagar/vim-table-mode'
|
||||
Plug 'easymotion/vim-easymotion'
|
||||
|
|
@ -17,10 +17,10 @@ call plug#begin('~/.vim/plugged')
|
|||
|
||||
" Language support
|
||||
Plug 'pangloss/vim-javascript', { 'for': 'javascript' }
|
||||
Plug 'pearofducks/ansible-vim', { 'for': 'ansible' }
|
||||
Plug 'PotatoesMaster/i3-vim-syntax', { 'for': 'i3' }
|
||||
Plug 'kovetskiy/sxhkd-vim', { 'for': 'sxhkd' }
|
||||
Plug 'mattn/emmet-vim', { 'on': 'Emmet' }
|
||||
Plug 'Olical/vim-scheme', { 'for': 'scheme' }
|
||||
Plug 'cakebaker/scss-syntax.vim', { 'for': 'scss' }
|
||||
Plug 'dag/vim-fish', { 'for': 'fish' }
|
||||
Plug 'plasticboy/vim-markdown', { 'for': 'markdown' }
|
||||
|
|
@ -70,14 +70,14 @@ set visualbell t_vb=
|
|||
|
||||
set termguicolors
|
||||
set background=dark
|
||||
colorscheme NeoSolarized
|
||||
colorscheme nten16
|
||||
|
||||
|
||||
" == Plugins configure
|
||||
" Lightline
|
||||
set noshowmode
|
||||
let g:lightline = {
|
||||
\ 'colorscheme': 'selenized_dark',
|
||||
\ 'colorscheme': 'nten16',
|
||||
\ 'active': {
|
||||
\ 'left': [ [ 'mode', 'paste' ],
|
||||
\ [ 'readonly', 'modified' ] ],
|
||||
|
|
@ -113,8 +113,11 @@ map <C-p> :CtrlP<CR>
|
|||
imap <C-p> :CtrlP<CR>
|
||||
nmap <C-p> :CtrlP<CR>
|
||||
|
||||
" Indent guides
|
||||
let g:indent_guides_enable_on_vim_startup = 1
|
||||
|
||||
" == Maping
|
||||
imap fd <Esc>
|
||||
"imap fd <Esc>
|
||||
let mapleader=","
|
||||
|
||||
" Change window
|
||||
|
|
|
|||
BIN
config/nvim/screen.png
Normal file
BIN
config/nvim/screen.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 107 KiB |
Loading…
Add table
Add a link
Reference in a new issue