-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathnvim_init.vim
More file actions
23 lines (21 loc) · 896 Bytes
/
nvim_init.vim
File metadata and controls
23 lines (21 loc) · 896 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
let g:airline#extensions#tabline#enabled = 1
set mouse=a
source $HOME/.config/nvim/keybindings/keybindings.vim
source $HOME/.config/nvim/VimPlug/plugins.vim
source $HOME/.config/nvim/configs/themes.vim
source $HOME/.config/nvim/configs/fzf_config.vim
source $HOME/.config/nvim/configs/ale_config.vim
source $HOME/.config/nvim/configs/closetag_config.vim
" set cursorline
set nocompatible
set termguicolors
set grepprg=rg\ --vimgrep\ --no-heading\ --smart-case
"let g:prettier#autoformat = 1
"let g:prettier#autoformat_require_pragma = 0
"autocmd BufWritePre *.js,*.jsx,*.mjs,*.ts,*.tsx,*.css,*.less,*.scss,*.json,*.graphql,*.md,*.vue PrettierAsync
let $NVIM_TUI_ENABLE_TRUE_COLOR=1
let g:rainbow_active = 1
let &t_8f = "\<Esc>[38;2;%lu;%lu;%lum"
let &t_8b = "\<Esc>[48;2;%lu;%lu;%lum"
command! -nargs=0 Prettier :call CocAction('runCommand', 'prettier.formatFile')
let g:airline_theme = "deus"