call plug#begin('~/.vim/plugged') 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 " Completion & snippets Plug 'ycm-core/YouCompleteMe' Plug 'jiangmiao/auto-pairs' Plug 'SirVer/ultisnips' " 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 set termguicolors colorscheme nten16 set t_Co=256 " Syntax & number line syntax on set nu rnu " Status line set noshowmode set ruler set showcmd " Mouse set mouse=a set mousehide set cursorline " Encoding set encoding=utf-8 set fileencodings=utf-8 " Line wrap set nowrap set nolinebreak " Backup file & history set nobackup set noswapfile set history=100 " Reload file set autoread " Tabs set tabstop=4 set shiftwidth=4 set softtabstop=4 set expandtab set autoindent " Search set incsearch set ignorecase set smartcase " Buffer(s) set hidden set smartindent " Spell set spell set spelllang=en_us " Disable sound set visualbell t_vb= " == Plugins configuration let g:lightline = { \ 'colorscheme': 'nten16', \ 'active': { \ 'left': [ [ 'mode', 'paste' ], \ [ 'readonly', 'modified' ] ], \ 'right': [ [ 'lineinfo' ], \ [ 'percent' ], \ [ 'filename', 'filetype' ] ] \ }, } " Markdown let g:vim_markdown_folding_disabled = 1 let g:vim_markdown_frontmatter=1 let g:markdown_fenced_languages = ['go', 'python', 'bash', 'sh=bash'] " 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 " Floaterm let g:floaterm_title = "" let g:floaterm_wintype = "floating" let g:floaterm_position = "bottomright" let g:floaterm_height = 0.4 let g:floaterm_width = 0.5 let g:floaterm_autoclose = 2 nmap :FloatermNew " UltiSnipts let g:UltiSnipsExpandTrigger="" let g:UltiSnipsEditSplit="vertical" let g:UltiSnipsJumpForwardTrigger="" let g:UltiSnipsJumpBackwardTrigger="" " Go let g:go_template_autocreate = 0 let g:go_highlight_structs = 1 let g:go_highlight_methods = 1 let g:go_highlight_functions = 1 let g:go_highlight_operators = 1 let g:go_highlight_build_constraints = 1 let g:go_snippet_engine = "" " Startify let g:startify_custom_header = [ \ " _____ _____ _ ", \ " | | |___ ___| | |_|_____ ", \ " | | | | -_| . | | | | | ", \ " |_|___|___|___|\___/|_|_|_|_| ", \ ] let g:startify_lists = [ \ { 'type': 'bookmarks', 'header': ["  Bookmarks"] }, \ { 'type': 'files', 'header': ["  Files"] }, \ ] " == Mapping let mapleader="," " window(s) nmap :wincmd h nmap :wincmd j nmap :wincmd k nmap :wincmd l nmap :wincmd K nmap :wincmd L nmap :wincmd n " Tab(s) noremap :tabnext noremap :tabprev noremap :tabnew noremap :tabclose noremap :tabn 1 noremap :tabn 2 noremap :tabn 3 noremap :tabn 4 noremap :tabn 5 noremap :tabn 6 noremap :tabn 7 noremap :tabn 8 noremap :tabn 9 " Buffer(s) noremap p :bnext noremap o :bprev