mirror of
https://github.com/olexsmir/dotfiles.git
synced 2026-01-15 08:41:34 +02:00
Delete not use, update config
This commit is contained in:
parent
25b4e80c8d
commit
73ebbfbe50
37 changed files with 163 additions and 1634 deletions
|
|
@ -1,26 +0,0 @@
|
|||
# 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,35 +1,27 @@
|
|||
call plug#begin('~/.vim/plugged')
|
||||
Plug 'nathanaelkane/vim-indent-guides' " Displaying indent levels
|
||||
Plug 'itchyny/lightline.vim' " Status line
|
||||
Plug 'Smirnov-O/nten16.vim' " Color scheme
|
||||
Plug 'frazrepo/vim-rainbow' " Rainbow brackets
|
||||
Plug 'mhinz/vim-startify' " Start page
|
||||
Plug 'ap/vim-css-color' " CSS color preview
|
||||
Plug 'airblade/vim-gitgutter' " Git indicator
|
||||
Plug 'preservim/nerdcommenter' " Code commenter
|
||||
Plug 'junegunn/goyo.vim'
|
||||
Plug 'voldikss/vim-floaterm' " Terminal
|
||||
Plug 'Smirnov-O/nten16.vim' " Color scheme
|
||||
Plug 'itchyny/lightline.vim' " Status line
|
||||
Plug 'airblade/vim-gitgutter' " Git indicator
|
||||
Plug 'vimwiki/vimwiki' " Wiki in vim
|
||||
Plug 'ap/vim-css-color' " CSS color preview
|
||||
Plug 'mhinz/vim-startify' " Start page
|
||||
Plug 'voldikss/vim-floaterm' " Terminal floating window
|
||||
Plug 'kassio/neoterm' " Terminal wrapper
|
||||
Plug 'editorconfig/editorconfig-vim' " EditorConfig
|
||||
|
||||
" Project/file navigation
|
||||
Plug 'scrooloose/nerdtree', {'on': 'NERDTreeToggle'}
|
||||
Plug 'preservim/tagbar', {'on': 'TagbarToggle'}
|
||||
Plug 'kien/ctrlp.vim', {'on': 'CtrlP'}
|
||||
" Completion & snippets
|
||||
Plug 'ycm-core/YouCompleteMe'
|
||||
Plug 'jiangmiao/auto-pairs'
|
||||
Plug 'SirVer/ultisnips'
|
||||
|
||||
" Completion & snippets
|
||||
Plug 'ycm-core/YouCompleteMe'
|
||||
Plug 'jiangmiao/auto-pairs'
|
||||
Plug 'SirVer/ultisnips'
|
||||
|
||||
" Language syntax
|
||||
Plug 'plasticboy/vim-markdown', {'for': 'markdown'}
|
||||
Plug 'dhruvasagar/vim-table-mode', {'for': 'markdown'}
|
||||
Plug 'xinhangliu/ficus.vim', {'for': 'markdown'}
|
||||
Plug 'vim-python/python-syntax', {'for': 'python'}
|
||||
Plug 'alaviss/nim.nvim', {'for': 'nim'}
|
||||
Plug 'fatih/vim-go', {'for': 'go'}
|
||||
Plug 'nsf/gocode', {'for': 'go'}
|
||||
Plug 'PotatoesMaster/i3-vim-syntax', {'for': 'i3'}
|
||||
Plug 'kovetskiy/sxhkd-vim', {'for': 'sxhkd'}
|
||||
" Programing
|
||||
Plug 'metakirby5/codi.vim'
|
||||
Plug 'sheerun/vim-polyglot'
|
||||
Plug 'plasticboy/vim-markdown', {'for': 'markdown'}
|
||||
Plug 'vim-python/python-syntax', {'for': 'python'}
|
||||
Plug 'fatih/vim-go', {'for': 'go'}
|
||||
Plug 'nsf/gocode', {'for': 'go'}
|
||||
Plug 'PotatoesMaster/i3-vim-syntax', {'for': 'i3'}
|
||||
call plug#end()
|
||||
|
||||
" Theme
|
||||
|
|
@ -105,10 +97,11 @@ let g:lightline = {
|
|||
let g:vim_markdown_folding_disabled = 1
|
||||
let g:vim_markdown_frontmatter=1
|
||||
let g:markdown_fenced_languages = ['go', 'python', 'bash', 'sh=bash']
|
||||
let g:ficus_dir = "~/Documents/Notes"
|
||||
|
||||
" Rainbow
|
||||
let g:rainbow_active = 1
|
||||
" VimWiki
|
||||
let g:vimwiki_list = [{'path': '~/Documents/Notes', 'syntax': 'markdown', 'ext': '.md'}]
|
||||
"let g:vimwiki_ext2syntax = {".md": "markdown"}
|
||||
let g:VimWiki_markdown_link_ext = 1
|
||||
|
||||
" Python
|
||||
let g:python_higlight_all = 1
|
||||
|
|
@ -117,13 +110,11 @@ let g:python_higlight_all = 1
|
|||
let g:floaterm_title = ""
|
||||
let g:floaterm_wintype = "floating"
|
||||
let g:floaterm_position = "bottomright"
|
||||
let g:floaterm_borderchars = ""
|
||||
let g:floaterm_height = 0.4
|
||||
let g:floaterm_width = 0.5
|
||||
let g:floaterm_autoclose = 2
|
||||
nmap <A-t> :FloatermNew<CR>
|
||||
|
||||
|
||||
" UltiSnipts
|
||||
let g:UltiSnipsExpandTrigger="<C-a>"
|
||||
let g:UltiSnipsEditSplit="vertical"
|
||||
|
|
@ -139,20 +130,6 @@ let g:go_highlight_operators = 1
|
|||
let g:go_highlight_build_constraints = 1
|
||||
let g:go_snippet_engine = ""
|
||||
|
||||
" TagBar
|
||||
let g:tagbar_autoclose = 1
|
||||
let g:tagbar_width = 18
|
||||
let g:tagbar_left = 1
|
||||
|
||||
" Nerdtree
|
||||
let NERDTreeIgnore = ['__pycache__', '.DS_Store', '.git']
|
||||
let g:NERDTreeWinPos = "right"
|
||||
let g:NERDTreeWinSize = 28
|
||||
let NERDTreeMinimalUI = 1
|
||||
|
||||
" CtrlP
|
||||
let g:ctrlp_custom_ignore = '\v[\/]\.(git|hg|svn)$'
|
||||
|
||||
" Startify
|
||||
let g:startify_custom_header = [
|
||||
\ " _____ _____ _ ",
|
||||
|
|
@ -195,8 +172,3 @@ noremap <A-9> :tabn 9<CR>
|
|||
" Buffer(s)
|
||||
noremap <leader>p :bnext<CR>
|
||||
noremap <leader>o :bprev<CR>
|
||||
|
||||
" Plugins
|
||||
map <leader>gg :Goyo 80%x95% <CR>
|
||||
map <F9> :TagbarToggle<CR>
|
||||
map <C-b> :NERDTreeToggle<CR>
|
||||
|
|
|
|||
Binary file not shown.
|
Before Width: | Height: | Size: 107 KiB |
Loading…
Add table
Add a link
Reference in a new issue