Last active
February 19, 2022 05:42
-
-
Save maxlibin/dbf58d693814dbaac87696f8e6ae8760 to your computer and use it in GitHub Desktop.
Vim setup
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
" Start Vim | |
" ------------------------------------------------------------------------------ | |
syntax on | |
set number | |
set relativenumber | |
set rnu | |
set tabstop=2 | |
set shiftwidth=2 | |
set softtabstop=2 | |
set expandtab | |
set smartindent | |
set nowrap | |
set noswapfile | |
set nobackup | |
set undodir=~/.vim/undordir | |
set undofile | |
set mouse=c | |
set incsearch | |
set cursorline cursorcolumn | |
set signcolumn=auto | |
set ignorecase | |
set ttyfast | |
set lazyredraw | |
set guifont=Fira\ Code:h12 | |
set rtp^="/Users/max/workspace/frontend/_opam/share/ocp-indent/vim" | |
set colorcolumn=120 | |
set nocompatible | |
set linespace=1 | |
filetype plugin on | |
call plug#begin('~/.vim/plugged') | |
Plug 'folke/tokyonight.nvim', { 'branch': 'main' } | |
Plug 'kyazdani42/nvim-web-devicons' | |
Plug 'folke/trouble.nvim' | |
Plug 'nvim-lua/plenary.nvim' | |
Plug 'nvim-telescope/telescope.nvim' | |
Plug 'andymass/vim-matchup' | |
Plug 'tpope/vim-repeat' | |
Plug 'tpope/vim-surround' | |
Plug 'mattn/emmet-vim' | |
Plug 'airblade/vim-gitgutter' | |
Plug 'maxbrunsfeld/vim-yankstack' | |
Plug 'tpope/vim-fugitive' | |
Plug 'vim-airline/vim-airline' | |
Plug 'vim-airline/vim-airline-themes' | |
Plug 'neoclide/coc.nvim', {'branch': 'release'} | |
Plug 'honza/vim-snippets' | |
Plug 'junegunn/fzf', { 'do': { -> fzf#install() } } | |
Plug 'voldikss/vim-floaterm' | |
Plug 'junegunn/fzf.vim' | |
Plug 'Yggdroot/indentLine' | |
Plug 'sheerun/vim-polyglot' | |
Plug 'terryma/vim-multiple-cursors' | |
Plug 'nvim-treesitter/nvim-treesitter', {'do': ':TSUpdate'} | |
call plug#end() | |
lua << EOF | |
require("trouble").setup { | |
-- your configuration comes here | |
-- or leave it empty to use the default settings | |
-- refer to the configuration section below | |
} | |
EOF | |
let g:airline#extensions#tabline#enabled = 1 | |
let g:airline#extensions#tabline#formatter = 'unique_tail' | |
" For Neovim 0.1.3 and 0.1.4 - https://github.com/neovim/neovim/pull/2198 | |
if (has('nvim')) | |
let $NVIM_TUI_ENABLE_TRUE_COLOR = 1 | |
endif | |
let g:airline_theme = 'tokyonight' | |
let g:airline_powerline_fonts = 1 | |
if (has("nvim")) | |
"For Neovim 0.1.3 and 0.1.4 < https://github.com/neovim/neovim/pull/2198 > | |
let $NVIM_TUI_ENABLE_TRUE_COLOR=1 | |
endif | |
"For Neovim > 0.1.5 and Vim > patch 7.4.1799 < https://github.com/vim/vim/commit/61be73bb0f965a895bfb064ea3e55476ac175162 > | |
"Based on Vim patch 7.4.1770 (`guicolors` option) < https://github.com/vim/vim/commit/8a633e3427b47286869aa4b96f2bfc1fe65b25cd > | |
" < https://github.com/neovim/neovim/wiki/Following-HEAD#20160511 > | |
if (has("termguicolors")) | |
set termguicolors | |
endif | |
let g:tokyonight_style = "night" | |
"let g:tokyonight_italic_functions = 1 | |
let g:tokyonight_sidebars = [ "qf", "vista_kind", "terminal", "packer" ] | |
" Change the "hint" color to the "orange" color, and make the "error" color bright red | |
let g:tokyonight_colors = { | |
\ 'hint': 'orange', | |
\ 'error': '#ff0000' | |
\ } | |
" Load the colorscheme | |
set background=dark | |
colorscheme tokyonight | |
" ------------------------------------------------------------------------------ | |
" Configs for COC plugin | |
" ------------------------------------------------------------------------------ | |
" TextEdit might fail if hidden is not set. | |
set hidden | |
" Some servers have issues with backup files, see #649. | |
set nowritebackup | |
" Give more space for displaying messages. | |
set cmdheight=2 | |
" Having longer updatetime (default is 4000 ms = 4 s) leads to noticeable | |
" delays and poor user experience. | |
set updatetime=300 | |
" Don't pass messages to |ins-completion-menu|. | |
set shortmess+=c | |
" Always show the signcolumn, otherwise it would shift the text each time | |
" diagnostics appear/become resolved. | |
if has("patch-8.1.1564") | |
" Recently vim can merge signcolumn and number column into one | |
set signcolumn=number | |
else | |
set signcolumn=yes | |
endif | |
" Use tab for trigger completion with characters ahead and navigate. | |
" NOTE: Use command ':verbose imap <tab>' to make sure tab is not mapped by | |
" other plugin before putting this into your config. | |
inoremap <silent><expr> <TAB> | |
\ pumvisible() ? "\<C-n>" : | |
\ <SID>check_back_space() ? "\<TAB>" : | |
\ coc#refresh() | |
inoremap <expr><S-TAB> pumvisible() ? "\<C-p>" : "\<C-h>" | |
function! s:check_back_space() abort | |
let col = col('.') - 1 | |
return !col || getline('.')[col - 1] =~# '\s' | |
endfunction | |
" Use <c-space> to trigger completion. | |
if has('nvim') | |
inoremap <silent><expr> <c-space> coc#refresh() | |
else | |
inoremap <silent><expr> <c-@> coc#refresh() | |
endif | |
" Make <CR> auto-select the first completion item and notify coc.nvim to | |
" format on enter, <cr> could be remapped by other vim plugin | |
inoremap <silent><expr> <cr> pumvisible() ? coc#_select_confirm() | |
\: "\<C-g>u\<CR>\<c-r>=coc#on_enter()\<CR>" | |
" GoTo code navigation. | |
nmap <silent> gd <Plug>(coc-definition) | |
nmap <silent> gs :sp<CR><Plug>(coc-definition) | |
" Use K to show documentation in preview window. | |
nnoremap <silent> K :call <SID>show_documentation()<CR> | |
function! s:show_documentation() | |
if (index(['vim','help'], &filetype) >= 0) | |
execute 'h '.expand('<cword>') | |
elseif (coc#rpc#ready()) | |
call CocActionAsync('doHover') | |
else | |
execute '!' . &keywordprg . " " . expand('<cword>') | |
endif | |
endfunction | |
" Highlight the symbol and its references when holding the cursor. | |
autocmd CursorHold * silent call CocActionAsync('highlight') | |
" Symbol renaming. | |
nmap <leader>rn <Plug>(coc-rename) | |
" Formatting selected code. | |
xmap <leader>f <Plug>(coc-format-selected) | |
nmap <leader>f <Plug>(coc-format-selected) | |
augroup mygroup | |
autocmd! | |
" Setup formatexpr specified filetype(s). | |
autocmd FileType typescript,json setl formatexpr=CocAction('formatSelected') | |
" Update signature help on jump placeholder. | |
autocmd User CocJumpPlaceholder call CocActionAsync('showSignatureHelp') | |
augroup end | |
" ------------------------------------------------------------------------------ | |
" Other Keys mapping | |
" ------------------------------------------------------------------------------ | |
" nmap <C-b> :Vexplore<CR> | |
nnoremap <space>e :CocCommand explorer<CR> | |
" nmap <C-g> :GFiles<CR> | |
nmap <C-h> :History<CR> | |
nmap <C-p> :Files<CR> | |
" Find files using Telescope command-line sugar. | |
nmap <C-g> :Telescope find_files<CR> | |
nmap <C-f> :Telescope live_grep<CR> | |
nnoremap <leader>fb <cmd>Telescope buffers<cr> | |
nnoremap <leader>fh <cmd>Telescope help_tags<cr> | |
nmap <C-s> :w<CR> | |
imap jj <Esc> | |
imap kk <Esc> | |
nnoremap <silent> <C-z> :FloatermToggle<Enter> | |
tnoremap <silent> <C-z> <C-\><C-n>:FloatermToggle<CR> | |
vnoremap <leader>c :OSCYank<CR> | |
" move among buffers with CTRL | |
map <C-J> :bprev<CR> | |
map <C-K> :bnext<CR> | |
" Shift + J/K moves selected lines down/up in visual mode | |
vnoremap J :m '>+1<CR>gv=gv | |
vnoremap K :m '<-2<CR>gv=gv | |
" | |
" ----------------------------------------------------------------------------- | |
" Formting ReasonML with bsrefmt | |
augroup reasonml | |
autocmd! | |
autocmd FileType reason nmap <silent> == :! yarn bsrefmt --in-place -w 120 %:p <CR> :e! <CR> | |
augroup END | |
" enable autocomplete | |
let g:deoplete#enable_at_startup = 1 | |
" ----------------------------------------------------------------------------- | |
" Set Yank to end the visual block at last line | |
" ----------------------------------------------------------------------------- | |
function! YRRunAfterMaps() | |
vmap y ygv<Esc> | |
endfunction | |
" ----------------------------------------------------------------------------- | |
" Set floating window border line color to cyan, and background to orange | |
" hi FloatermBorder guifg=cyan | |
autocmd InsertEnter,InsertLeave * set cul! | |
hi CursorColumn guibg=#202020 | |
hi CursorLine guibg=#202020 | |
set t_ZH=^[[3m | |
set t_ZR=^[[23m | |
"treesitter | |
:lua <<EOF | |
require'nvim-treesitter.configs'.setup { | |
highlight = { | |
enable = true, | |
}, | |
} | |
require "nvim-treesitter.highlight" | |
vim.treesitter.highlighter.hl_map.error = nil | |
EOF |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment