use astronvim instead of other configs
This commit is contained in:
@@ -1,114 +0,0 @@
|
|||||||
|
|
||||||
call plug#begin()
|
|
||||||
source $HOME/.config/nvim/templates/general_plugs.vim
|
|
||||||
" LSP resources
|
|
||||||
Plug 'neovim/nvim-lspconfig'
|
|
||||||
Plug 'williamboman/nvim-lsp-installer'
|
|
||||||
Plug 'hrsh7th/cmp-nvim-lsp'
|
|
||||||
Plug 'hrsh7th/cmp-buffer'
|
|
||||||
Plug 'hrsh7th/cmp-path'
|
|
||||||
Plug 'hrsh7th/cmp-cmdline'
|
|
||||||
Plug 'hrsh7th/nvim-cmp'
|
|
||||||
|
|
||||||
" For vsnip users.
|
|
||||||
Plug 'hrsh7th/cmp-vsnip'
|
|
||||||
Plug 'hrsh7th/vim-vsnip'
|
|
||||||
|
|
||||||
" For luasnip users.
|
|
||||||
" Plug 'L3MON4D3/LuaSnip'
|
|
||||||
" Plug 'saadparwaiz1/cmp_luasnip'
|
|
||||||
|
|
||||||
" For ultisnips users.
|
|
||||||
" Plug 'SirVer/ultisnips'
|
|
||||||
" Plug 'quangnguyen30192/cmp-nvim-ultisnips'
|
|
||||||
|
|
||||||
" For snippy users.
|
|
||||||
" Plug 'dcampos/nvim-snippy'
|
|
||||||
" Plug 'dcampos/cmp-snippy'
|
|
||||||
|
|
||||||
call plug#end()
|
|
||||||
|
|
||||||
source $HOME/.config/nvim/templates/general.vim
|
|
||||||
|
|
||||||
" Theme
|
|
||||||
colorscheme OceanicNext
|
|
||||||
|
|
||||||
lua <<EOF
|
|
||||||
-- Setup nvim-cmp.
|
|
||||||
local cmp = require'cmp'
|
|
||||||
local lsp_installer = require("nvim-lsp-installer")
|
|
||||||
|
|
||||||
cmp.setup({
|
|
||||||
snippet = {
|
|
||||||
-- REQUIRED - you must specify a snippet engine
|
|
||||||
expand = function(args)
|
|
||||||
vim.fn["vsnip#anonymous"](args.body) -- For `vsnip` users.
|
|
||||||
-- require('luasnip').lsp_expand(args.body) -- For `luasnip` users.
|
|
||||||
-- vim.fn["UltiSnips#Anon"](args.body) -- For `ultisnips` users.
|
|
||||||
-- require'snippy'.expand_snippet(args.body) -- For `snippy` users.
|
|
||||||
end,
|
|
||||||
},
|
|
||||||
mapping = {
|
|
||||||
['<C-b>'] = cmp.mapping(cmp.mapping.scroll_docs(-4), { 'i', 'c' }),
|
|
||||||
['<C-f>'] = cmp.mapping(cmp.mapping.scroll_docs(4), { 'i', 'c' }),
|
|
||||||
['<C-Space>'] = cmp.mapping(cmp.mapping.complete(), { 'i', 'c' }),
|
|
||||||
['<C-y>'] = cmp.config.disable, -- Specify `cmp.config.disable` if you want to remove the default `<C-y>` mapping.
|
|
||||||
['<C-e>'] = cmp.mapping({
|
|
||||||
i = cmp.mapping.abort(),
|
|
||||||
c = cmp.mapping.close(),
|
|
||||||
}),
|
|
||||||
['<CR>'] = cmp.mapping.confirm({ select = true }),
|
|
||||||
},
|
|
||||||
sources = cmp.config.sources({
|
|
||||||
{ name = 'nvim_lsp' },
|
|
||||||
{ name = 'vsnip' }, -- For vsnip users.
|
|
||||||
-- { name = 'luasnip' }, -- For luasnip users.
|
|
||||||
-- { name = 'ultisnips' }, -- For ultisnips users.
|
|
||||||
-- { name = 'snippy' }, -- For snippy users.
|
|
||||||
}, {
|
|
||||||
{ name = 'buffer' },
|
|
||||||
})
|
|
||||||
})
|
|
||||||
|
|
||||||
-- Use buffer source for `/` (if you enabled `native_menu`, this won't work anymore).
|
|
||||||
cmp.setup.cmdline('/', {
|
|
||||||
sources = {
|
|
||||||
{ name = 'buffer' }
|
|
||||||
}
|
|
||||||
})
|
|
||||||
|
|
||||||
-- Use cmdline & path source for ':' (if you enabled `native_menu`, this won't work anymore).
|
|
||||||
cmp.setup.cmdline(':', {
|
|
||||||
sources = cmp.config.sources({
|
|
||||||
{ name = 'path' }
|
|
||||||
}, {
|
|
||||||
{ name = 'cmdline' }
|
|
||||||
})
|
|
||||||
})
|
|
||||||
-- Use an on_attach function to only map the following keys
|
|
||||||
-- after the language server attaches to the current buffer
|
|
||||||
local lsp_keymap = require('lsp_keymap')
|
|
||||||
|
|
||||||
local capabilities = require('cmp_nvim_lsp').update_capabilities(vim.lsp.protocol.make_client_capabilities())
|
|
||||||
lsp_installer.on_server_ready(function(server)
|
|
||||||
|
|
||||||
-- (optional) Customize the options passed to the server
|
|
||||||
-- if server.name == "tsserver" then
|
|
||||||
-- opts.root_dir = function() ... end
|
|
||||||
-- end
|
|
||||||
|
|
||||||
-- This setup() function is exactly the same as lspconfig's setup function.
|
|
||||||
-- Refer to https://github.com/neovim/nvim-lspconfig/blob/master/doc/server_configurations.md
|
|
||||||
server:setup {capabilities = capabilities, on_attach = lsp_keymap.custom_attach}
|
|
||||||
end)
|
|
||||||
EOF
|
|
||||||
|
|
||||||
" Local config
|
|
||||||
if filereadable($HOME . "/.vimrc.local")
|
|
||||||
source ~/.vimrc.local
|
|
||||||
endif
|
|
||||||
|
|
||||||
" Specific Local config
|
|
||||||
if filereadable($HOME . "/.config/nvim/cmp_init.vim.local")
|
|
||||||
source ~/.config/nvim/cmp_init.vim.local
|
|
||||||
endif
|
|
||||||
@@ -1,162 +0,0 @@
|
|||||||
call plug#begin()
|
|
||||||
source $HOME/.config/nvim/templates/general_plugs.vim
|
|
||||||
Plug 'neoclide/coc.nvim', {'branch': 'release'}
|
|
||||||
call plug#end()
|
|
||||||
|
|
||||||
source $HOME/.config/nvim/templates/general.vim
|
|
||||||
|
|
||||||
" Theme
|
|
||||||
colorscheme gruvbox
|
|
||||||
|
|
||||||
" 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>"
|
|
||||||
|
|
||||||
" Use `[g` and `]g` to navigate diagnostics
|
|
||||||
" Use `:CocDiagnostics` to get all diagnostics of current buffer in location list.
|
|
||||||
nmap <silent> [g <Plug>(coc-diagnostic-prev)
|
|
||||||
nmap <silent> ]g <Plug>(coc-diagnostic-next)
|
|
||||||
|
|
||||||
" GoTo code navigation.
|
|
||||||
nmap <silent> gd <Plug>(coc-definition)
|
|
||||||
nmap <silent> gx <Plug>(coc-type-definition)
|
|
||||||
nmap <silent> gi <Plug>(coc-implementation)
|
|
||||||
nmap <silent> gr <Plug>(coc-references)
|
|
||||||
|
|
||||||
" Navigate buffers like tabs (gt & gT)
|
|
||||||
nnoremap <silent> gb :bnext<CR>
|
|
||||||
nnoremap <silent> gB :bprevious<CR>
|
|
||||||
|
|
||||||
" 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
|
|
||||||
|
|
||||||
" Applying codeAction to the selected region.
|
|
||||||
" Example: `<leader>aap` for current paragraph
|
|
||||||
xmap <leader>a <Plug>(coc-codeaction-selected)
|
|
||||||
nmap <leader>a <Plug>(coc-codeaction-selected)
|
|
||||||
|
|
||||||
" Remap keys for applying codeAction to the current buffer.
|
|
||||||
nmap <leader>ac <Plug>(coc-codeaction)
|
|
||||||
" Apply AutoFix to problem on the current line.
|
|
||||||
nmap <leader>qf <Plug>(coc-fix-current)
|
|
||||||
|
|
||||||
" Map function and class text objects
|
|
||||||
" NOTE: Requires 'textDocument.documentSymbol' support from the language server.
|
|
||||||
xmap if <Plug>(coc-funcobj-i)
|
|
||||||
omap if <Plug>(coc-funcobj-i)
|
|
||||||
xmap af <Plug>(coc-funcobj-a)
|
|
||||||
omap af <Plug>(coc-funcobj-a)
|
|
||||||
xmap ic <Plug>(coc-classobj-i)
|
|
||||||
omap ic <Plug>(coc-classobj-i)
|
|
||||||
xmap ac <Plug>(coc-classobj-a)
|
|
||||||
omap ac <Plug>(coc-classobj-a)
|
|
||||||
|
|
||||||
" Remap <C-f> and <C-b> for scroll float windows/popups.
|
|
||||||
if has('nvim-0.4.0') || has('patch-8.2.0750')
|
|
||||||
nnoremap <silent><nowait><expr> <C-f> coc#float#has_scroll() ? coc#float#scroll(1) : "\<C-f>"
|
|
||||||
nnoremap <silent><nowait><expr> <C-b> coc#float#has_scroll() ? coc#float#scroll(0) : "\<C-b>"
|
|
||||||
inoremap <silent><nowait><expr> <C-f> coc#float#has_scroll() ? "\<c-r>=coc#float#scroll(1)\<cr>" : "\<Right>"
|
|
||||||
inoremap <silent><nowait><expr> <C-b> coc#float#has_scroll() ? "\<c-r>=coc#float#scroll(0)\<cr>" : "\<Left>"
|
|
||||||
vnoremap <silent><nowait><expr> <C-f> coc#float#has_scroll() ? coc#float#scroll(1) : "\<C-f>"
|
|
||||||
vnoremap <silent><nowait><expr> <C-b> coc#float#has_scroll() ? coc#float#scroll(0) : "\<C-b>"
|
|
||||||
endif
|
|
||||||
|
|
||||||
" Use CTRL-S for selections ranges.
|
|
||||||
" Requires 'textDocument/selectionRange' support of language server.
|
|
||||||
nmap <silent> <C-s> <Plug>(coc-range-select)
|
|
||||||
xmap <silent> <C-s> <Plug>(coc-range-select)
|
|
||||||
|
|
||||||
|
|
||||||
" Add `:Format` command to format current buffer.
|
|
||||||
command! -nargs=0 Format :call CocAction('format')
|
|
||||||
|
|
||||||
" Add `:Fold` command to fold current buffer.
|
|
||||||
command! -nargs=? Fold :call CocAction('fold', <f-args>)
|
|
||||||
|
|
||||||
" Add `:OR` command for organize imports of the current buffer.
|
|
||||||
command! -nargs=0 OR :call CocAction('runCommand', 'editor.action.organizeImport')
|
|
||||||
|
|
||||||
" Add (Neo)Vim's native statusline support.
|
|
||||||
" NOTE: Please see `:h coc-status` for integrations with external plugins that
|
|
||||||
" provide custom statusline: lightline.vim, vim-airline.
|
|
||||||
set statusline^=%{coc#status()}%{get(b:,'coc_current_function','')}
|
|
||||||
|
|
||||||
" Mappings for CoCList
|
|
||||||
" Show all diagnostics.
|
|
||||||
nnoremap <silent><nowait> <space>a :<C-u>CocList diagnostics<cr>
|
|
||||||
" Manage extensions.
|
|
||||||
nnoremap <silent><nowait> <space>x :<C-u>CocList extensions<cr>
|
|
||||||
" Show commands.
|
|
||||||
nnoremap <silent><nowait> <space>c :<C-u>CocList commands<cr>
|
|
||||||
" Find symbol of current document.
|
|
||||||
nnoremap <silent><nowait> <space>o :<C-u>CocList outline<cr>
|
|
||||||
" Search workspace symbols.
|
|
||||||
nnoremap <silent><nowait> <space>s :<C-u>CocList -I symbols<cr>
|
|
||||||
" Do default action for next item.
|
|
||||||
nnoremap <silent><nowait> <space>j :<C-u>CocNext<CR>
|
|
||||||
" Do default action for previous item.
|
|
||||||
nnoremap <silent><nowait> <space>k :<C-u>CocPrev<CR>
|
|
||||||
" Resume latest coc list.
|
|
||||||
nnoremap <silent><nowait> <space>p :<C-u>CocListResume<CR>
|
|
||||||
|
|
||||||
nmap <space>e :CocCommand explorer<CR>
|
|
||||||
|
|
||||||
" Local config
|
|
||||||
if filereadable($HOME . "/.vimrc.local")
|
|
||||||
source ~/.vimrc.local
|
|
||||||
endif
|
|
||||||
|
|
||||||
" Specific Local config
|
|
||||||
if filereadable($HOME . "/.config/nvim/coc_init.vim.local")
|
|
||||||
source ~/.config/nvim/coc_init.vim.local
|
|
||||||
endif
|
|
||||||
@@ -1,64 +0,0 @@
|
|||||||
call plug#begin()
|
|
||||||
source $HOME/.config/nvim/templates/general_plugs.vim
|
|
||||||
" LSP resources
|
|
||||||
Plug 'neovim/nvim-lspconfig'
|
|
||||||
Plug 'williamboman/nvim-lsp-installer'
|
|
||||||
Plug 'ms-jpq/coq_nvim', {'branch': 'coq'}
|
|
||||||
Plug 'ms-jpq/coq.artifacts', {'branch': 'artifacts'}
|
|
||||||
call plug#end()
|
|
||||||
|
|
||||||
source $HOME/.config/nvim/templates/general.vim
|
|
||||||
|
|
||||||
set omnifunc=v:lua.vim.lsp.omnifunc
|
|
||||||
|
|
||||||
" Theme
|
|
||||||
set background=dark
|
|
||||||
colorscheme onedark
|
|
||||||
|
|
||||||
lua << EOF
|
|
||||||
vim.g.coq_settings = {
|
|
||||||
auto_start = 'shut-up',
|
|
||||||
['keymap.jump_to_mark'] = '',
|
|
||||||
['display.icons.mode'] = 'none',
|
|
||||||
['clients.third_party.enabled'] = false,
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
local nvim_lsp = require('lspconfig')
|
|
||||||
local coc = require "coq"
|
|
||||||
local lsp_installer = require("nvim-lsp-installer")
|
|
||||||
|
|
||||||
-- Use an on_attach function to only map the following keys
|
|
||||||
-- after the language server attaches to the current buffer
|
|
||||||
local lsp_keymap = require('lsp_keymap')
|
|
||||||
|
|
||||||
-- Register a handler that will be called for all installed servers.
|
|
||||||
-- Alternatively, you may also register handlers on specific server instances instead (see example below).
|
|
||||||
lsp_installer.on_server_ready(function(server)
|
|
||||||
|
|
||||||
-- (optional) Customize the options passed to the server
|
|
||||||
-- local opts = {}
|
|
||||||
-- if server.name == "tsserver" then
|
|
||||||
-- opts.root_dir = function() ... end
|
|
||||||
-- end
|
|
||||||
|
|
||||||
-- This setup() function is exactly the same as lspconfig's setup function.
|
|
||||||
-- Refer to https://github.com/neovim/nvim-lspconfig/blob/master/doc/server_configurations.md
|
|
||||||
|
|
||||||
-- Without coq.nvim:
|
|
||||||
-- server:setup(opts)
|
|
||||||
|
|
||||||
-- With coq.nvim:
|
|
||||||
server:setup(coq.lsp_ensure_capabilities{on_attach = lsp_keymap.custom_attach})
|
|
||||||
end)
|
|
||||||
EOF
|
|
||||||
|
|
||||||
" Local config
|
|
||||||
if filereadable($HOME . "/.vimrc.local")
|
|
||||||
source ~/.vimrc.local
|
|
||||||
endif
|
|
||||||
|
|
||||||
" Specific Local config
|
|
||||||
if filereadable($HOME . "/.config/nvim/coq_init.vim.local")
|
|
||||||
source ~/.config/nvim/coq_init.vim.local
|
|
||||||
endif
|
|
||||||
@@ -1,18 +0,0 @@
|
|||||||
call plug#begin()
|
|
||||||
source $HOME/.config/nvim/templates/general_plugs.vim
|
|
||||||
call plug#end()
|
|
||||||
|
|
||||||
source $HOME/.config/nvim/templates/general.vim
|
|
||||||
|
|
||||||
"Theme
|
|
||||||
colorscheme gruvbox
|
|
||||||
|
|
||||||
" Local config
|
|
||||||
if filereadable($HOME . "/.vimrc.local")
|
|
||||||
source ~/.vimrc.local
|
|
||||||
endif
|
|
||||||
|
|
||||||
" Specific Local config
|
|
||||||
if filereadable($HOME . "/.config/nvim/init.vim.local")
|
|
||||||
source ~/.config/nvim/init.vim.local
|
|
||||||
endif
|
|
||||||
@@ -1,35 +0,0 @@
|
|||||||
local M = {}
|
|
||||||
function M.custom_attach(client, bufnr)
|
|
||||||
local function buf_set_keymap(...) vim.api.nvim_buf_set_keymap(bufnr, ...) end
|
|
||||||
local function buf_set_option(...) vim.api.nvim_buf_set_option(bufnr, ...) end
|
|
||||||
|
|
||||||
-- Enable completion triggered by <c-x><c-o>
|
|
||||||
buf_set_option('omnifunc', 'v:lua.vim.lsp.omnifunc')
|
|
||||||
|
|
||||||
-- Mappings.
|
|
||||||
local opts = { noremap=true, silent=true }
|
|
||||||
|
|
||||||
-- See `:help vim.lsp.*` for documentation on any of the below functions
|
|
||||||
buf_set_keymap('n', 'gD', '<cmd>lua vim.lsp.buf.declaration()<CR>', opts)
|
|
||||||
buf_set_keymap('n', 'gd', '<cmd>lua vim.lsp.buf.definition()<CR>', opts)
|
|
||||||
buf_set_keymap('n', 'K', '<cmd>lua vim.lsp.buf.hover()<CR>', opts)
|
|
||||||
buf_set_keymap('n', 'gi', '<cmd>lua vim.lsp.buf.implementation()<CR>', opts)
|
|
||||||
buf_set_keymap('n', '<C-k>', '<cmd>lua vim.lsp.buf.signature_help()<CR>', opts)
|
|
||||||
buf_set_keymap('n', '<leader>wa', '<cmd>lua vim.lsp.buf.add_workspace_folder()<CR>', opts)
|
|
||||||
buf_set_keymap('n', '<leader>wr', '<cmd>lua vim.lsp.buf.remove_workspace_folder()<CR>', opts)
|
|
||||||
buf_set_keymap('n', '<leader>wl', '<cmd>lua print(vim.inspect(vim.lsp.buf.list_workspace_folders()))<CR>', opts)
|
|
||||||
buf_set_keymap('n', '<leader>D', '<cmd>lua vim.lsp.buf.type_definition()<CR>', opts)
|
|
||||||
buf_set_keymap('n', '<leader>rn', '<cmd>lua vim.lsp.buf.rename()<CR>', opts)
|
|
||||||
buf_set_keymap('n', '<leader>ca', '<cmd>lua vim.lsp.buf.code_action()<CR>', opts)
|
|
||||||
buf_set_keymap('n', 'gr', '<cmd>lua vim.lsp.buf.references()<CR>', opts)
|
|
||||||
buf_set_keymap('n', '<leader>e', '<cmd>lua vim.lsp.diagnostic.show_line_diagnostics()<CR>', opts)
|
|
||||||
buf_set_keymap('n', '[d', '<cmd>lua vim.lsp.diagnostic.goto_prev()<CR>', opts)
|
|
||||||
buf_set_keymap('n', ']d', '<cmd>lua vim.lsp.diagnostic.goto_next()<CR>', opts)
|
|
||||||
buf_set_keymap('n', '<leader>q', '<cmd>lua vim.lsp.diagnostic.set_loclist()<CR>', opts)
|
|
||||||
buf_set_keymap('n', '<space>f', '<cmd>lua vim.lsp.buf.formatting()<CR>', opts)
|
|
||||||
|
|
||||||
print("Language Server attached!")
|
|
||||||
|
|
||||||
end
|
|
||||||
|
|
||||||
return M
|
|
||||||
@@ -1,146 +0,0 @@
|
|||||||
" Automatically install vim plug
|
|
||||||
let data_dir = has('nvim') ? stdpath('data') . '/site' : '~/.vim'
|
|
||||||
if empty(glob(data_dir . '/autoload/plug.vim'))
|
|
||||||
silent execute '!curl -fLo '.data_dir.'/autoload/plug.vim --create-dirs https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim'
|
|
||||||
autocmd VimEnter * PlugInstall --sync | source $MYVIMRC
|
|
||||||
endif
|
|
||||||
|
|
||||||
set nocompatible
|
|
||||||
set completeopt=menu,menuone,noselect
|
|
||||||
|
|
||||||
" Set leader to comma
|
|
||||||
let mapleader=","
|
|
||||||
|
|
||||||
" Set to open tree
|
|
||||||
nnoremap <leader><space> <cmd>NERDTreeToggle<cr>
|
|
||||||
" Start NERDTree when Vim is started without file arguments.
|
|
||||||
autocmd StdinReadPre * let s:std_in=1
|
|
||||||
autocmd VimEnter * if argc() == 0 && !exists('s:std_in') | NERDTree | endif
|
|
||||||
|
|
||||||
" Set to open Vista Sidebar
|
|
||||||
nnoremap ;<space> <cmd>Vista!!<cr>
|
|
||||||
|
|
||||||
let g:vista#renderer#enable_icon = 1
|
|
||||||
let g:vista#renderer#icons = {
|
|
||||||
\ "function": "\uf794",
|
|
||||||
\ "variable": "\uf71b",
|
|
||||||
\ }
|
|
||||||
" To enable fzf's preview window set g:vista_fzf_preview.
|
|
||||||
" The elements of g:vista_fzf_preview will be passed as arguments to fzf#vim#with_preview()
|
|
||||||
" For example:
|
|
||||||
let g:vista_fzf_preview = ['right:50%']
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
map <C-p> :Files<CR>
|
|
||||||
|
|
||||||
let g:cpp_class_scope_highlight = 1
|
|
||||||
let g:cpp_member_variable_highlight = 1
|
|
||||||
let g:cpp_class_decl_highlight = 1
|
|
||||||
let g:cpp_posix_standard = 1
|
|
||||||
let g:cpp_experimental_template_highlight = 1
|
|
||||||
|
|
||||||
let g:airline#extensions#tabline#enabled = 1
|
|
||||||
let g:airline#extensions#tabline#buffer_nr_show = 1
|
|
||||||
let g:airline_powerline_fonts = 1
|
|
||||||
let g:airline_theme='tomorrow'
|
|
||||||
let g:airline_solarized_bg='dark'
|
|
||||||
let g:airline#extensions#hunks#enabled=1
|
|
||||||
let g:airline#extensions#branch#enabled=1
|
|
||||||
|
|
||||||
" Quick edit init.vim
|
|
||||||
nnoremap <Leader>v :n $MYVIMRC<cr>
|
|
||||||
|
|
||||||
" For vim-test: these Ctrl mappings work well when Caps Lock is mapped to Ctrl
|
|
||||||
nmap <silent> t<C-n> :TestNearest<CR>
|
|
||||||
nmap <silent> t<C-f> :TestFile<CR>
|
|
||||||
nmap <silent> t<C-s> :TestSuite<CR>
|
|
||||||
nmap <silent> t<C-l> :TestLast<CR>
|
|
||||||
nmap <silent> t<C-g> :TestVisit<CR>
|
|
||||||
let test#strategy = "asyncrun"
|
|
||||||
|
|
||||||
" Reloads vimrc after saving but keep cursor position
|
|
||||||
if !exists('*ReloadVimrc')
|
|
||||||
fun! ReloadVimrc()
|
|
||||||
let save_cursor = getcurpos()
|
|
||||||
source $MYVIMRC
|
|
||||||
call setpos('.', save_cursor)
|
|
||||||
endfun
|
|
||||||
endif
|
|
||||||
autocmd! BufWritePost $MYVIMRC call ReloadVimrc()
|
|
||||||
|
|
||||||
set background=dark
|
|
||||||
" Or if you have Neovim >= 0.1.5
|
|
||||||
if (has("termguicolors"))
|
|
||||||
set termguicolors
|
|
||||||
endif
|
|
||||||
|
|
||||||
" Theme
|
|
||||||
syntax enable
|
|
||||||
|
|
||||||
" Navigate buffers like tabs (gt & gT)
|
|
||||||
nnoremap <silent> gb :bnext<CR>
|
|
||||||
nnoremap <silent> gB :bprevious<CR>
|
|
||||||
|
|
||||||
" TextEdit might fail if hidden is not set.
|
|
||||||
set hidden
|
|
||||||
set number
|
|
||||||
|
|
||||||
set tabstop=4
|
|
||||||
set shiftwidth=4
|
|
||||||
set softtabstop=4
|
|
||||||
set expandtab
|
|
||||||
set smarttab
|
|
||||||
|
|
||||||
" Some servers have issues with backup files, see #649.
|
|
||||||
set nobackup
|
|
||||||
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=1000
|
|
||||||
|
|
||||||
" Don't pass messages to |ins-completion-menu|.
|
|
||||||
set shortmess+=c
|
|
||||||
|
|
||||||
" Allow mouse input
|
|
||||||
set mouse=a
|
|
||||||
|
|
||||||
" 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
|
|
||||||
|
|
||||||
" Set termdebug
|
|
||||||
let g:termdebug_wide=1
|
|
||||||
|
|
||||||
" Experimental Treesitter Plugin
|
|
||||||
" lua << EOF
|
|
||||||
" require'nvim-treesitter.configs'.setup {
|
|
||||||
" ensure_installed = { "zig", "python", "c", "bash", "json" }, -- one of "all", "maintained" (parsers with maintainers), or a list of languages
|
|
||||||
" sync_install = false, -- install languages synchronously (only applied to `ensure_installed`)
|
|
||||||
" ignore_install = { "javascript" }, -- List of parsers to ignore installing
|
|
||||||
" highlight = {
|
|
||||||
" enable = true, -- false will disable the whole extension
|
|
||||||
" -- disable = { "c", "rust" }, -- list of language that will be disabled
|
|
||||||
" -- Setting this to true will run `:h syntax` and tree-sitter at the same time.
|
|
||||||
" -- Set this to `true` if you depend on 'syntax' being enabled (like for indentation).
|
|
||||||
" -- Using this option may slow down your editor, and you may see some duplicate highlights.
|
|
||||||
" -- Instead of true it can also be a list of languages
|
|
||||||
" additional_vim_regex_highlighting = false,
|
|
||||||
" },
|
|
||||||
" }
|
|
||||||
|
|
||||||
" EOF
|
|
||||||
|
|
||||||
" Specific Local config
|
|
||||||
if filereadable($HOME . "/.config/nvim/templates/general.vim.local")
|
|
||||||
source ~/.config/nvim/templates/general.vim.local
|
|
||||||
endif
|
|
||||||
@@ -1,30 +0,0 @@
|
|||||||
" Color Schemes
|
|
||||||
Plug 'rafi/awesome-vim-colorschemes'
|
|
||||||
Plug 'mhartington/oceanic-next'
|
|
||||||
Plug 'morhetz/gruvbox'
|
|
||||||
Plug 'joshdick/onedark.vim'
|
|
||||||
|
|
||||||
" Navigation
|
|
||||||
Plug 'tpope/vim-commentary'
|
|
||||||
Plug 'tpope/vim-surround'
|
|
||||||
|
|
||||||
" Commands
|
|
||||||
Plug 'vim-test/vim-test'
|
|
||||||
Plug 'skywind3000/asyncrun.vim'
|
|
||||||
Plug 'junegunn/fzf', { 'do': { -> fzf#install() } }
|
|
||||||
Plug 'junegunn/fzf.vim'
|
|
||||||
|
|
||||||
" Extra Appearance Features
|
|
||||||
Plug 'airblade/vim-gitgutter'
|
|
||||||
Plug 'tpope/vim-fugitive'
|
|
||||||
Plug 'mhinz/vim-signify'
|
|
||||||
Plug 'vim-airline/vim-airline'
|
|
||||||
Plug 'vim-airline/vim-airline-themes'
|
|
||||||
|
|
||||||
" File Navigation
|
|
||||||
Plug 'preservim/nerdtree'
|
|
||||||
" Vista Sidebar
|
|
||||||
Plug 'liuchengxu/vista.vim'
|
|
||||||
" Syntax Highlighting
|
|
||||||
Plug 'sheerun/vim-polyglot'
|
|
||||||
" Plug 'nvim-treesitter/nvim-treesitter', {'do': ':TSUpdate'} " Experimental
|
|
||||||
@@ -10,6 +10,7 @@ sudo apt install zsh tmux perl bash -y
|
|||||||
brew install neovim zsh tmux perl
|
brew install neovim zsh tmux perl
|
||||||
{{- end }}
|
{{- end }}
|
||||||
|
|
||||||
|
git clone https://github.com/AstroNvim/AstroNvim ~/.config/nvim
|
||||||
curl -L git.io/antigen > ~/.antigen.zsh
|
curl -L git.io/antigen > ~/.antigen.zsh
|
||||||
|
|
||||||
curl https://raw.githubusercontent.com/candrewlee14/webman/main/scripts/install.sh | sh
|
curl https://raw.githubusercontent.com/candrewlee14/webman/main/scripts/install.sh | sh
|
||||||
|
|||||||
Reference in New Issue
Block a user