mirror of
https://github.com/turtlebasket/env.git
synced 2026-03-04 19:44:26 -08:00
update
This commit is contained in:
@@ -33,18 +33,25 @@ Plug 'vim-airline/vim-airline-themes'
|
||||
Plug 'airblade/vim-gitgutter'
|
||||
Plug 'mangeshrex/everblush.vim'
|
||||
Plug 'ms-jpq/chadtree', {'branch': 'chad', 'do': 'python3 -m chadtree deps'}
|
||||
" Plug 'nvim-lua/plenary.nvim'
|
||||
" Plug 'nvim-telescope/telescope.nvim'
|
||||
Plug 'nvim-lua/plenary.nvim'
|
||||
Plug 'nvim-telescope/telescope.nvim'
|
||||
Plug 'akinsho/toggleterm.nvim', {'tag' : 'v1.*'}
|
||||
|
||||
Plug 'neoclide/coc.nvim', {'branch': 'release'}
|
||||
" Plug 'neoclide/coc.nvim', {'branch': 'release'}
|
||||
Plug 'ms-jpq/coq_nvim', {'branch': 'coq'}
|
||||
Plug 'neovim/nvim-lspconfig'
|
||||
Plug 'nvim-treesitter/nvim-treesitter', {'do': ':TSUpdate'}
|
||||
Plug 'jiangmiao/auto-pairs'
|
||||
|
||||
Plug 'dhruvasagar/vim-table-mode'
|
||||
|
||||
" Svelte
|
||||
" Plug 'othree/html5.vim'
|
||||
" Plug 'pangloss/vim-javascript'
|
||||
" Plug 'evanleck/vim-svelte', {'branch': 'main'}
|
||||
call plug#end()
|
||||
|
||||
" Lua Plugins
|
||||
" lua require('plugins')
|
||||
lua require('plugins')
|
||||
|
||||
" Theming
|
||||
set termguicolors
|
||||
@@ -61,6 +68,10 @@ if exists("g:neovide")
|
||||
set guifont=CaskaydiaCove\ Nerd\ Font:h12.5
|
||||
endif
|
||||
|
||||
" Start up plugins
|
||||
autocmd VimEnter * :COQnow
|
||||
autocmd VimEnter * :TSEnable highlight
|
||||
|
||||
" Navigation & Shortcuts
|
||||
|
||||
" Open file tree
|
||||
@@ -81,6 +92,14 @@ nnoremap <C-w>d :close<CR>
|
||||
" Close the current tab
|
||||
nnoremap <Leader>td :tabclose<CR>
|
||||
nnoremap <Leader>tk :tabclose<CR>
|
||||
|
||||
" Search for files
|
||||
nnoremap <Leader><Leader> :Telescope find_files<CR>
|
||||
nnoremap <Leader>ff :Telescope find_files<CR>
|
||||
|
||||
" Git status
|
||||
nnoremap <Leader>gs :Telescope git_status<CR>
|
||||
nnoremap <Leader>gc :Telescope git_commits<CR>
|
||||
" map <Leader>bk :bd!<CR>
|
||||
|
||||
" Reload config
|
||||
|
||||
@@ -0,0 +1,8 @@
|
||||
local use = require('packer').use
|
||||
require('packer').startup(function()
|
||||
use 'wbthomason/packer.nvim' -- Package manager
|
||||
use 'neovim/nvim-lspconfig' -- Configurations for Nvim LSP
|
||||
end)
|
||||
|
||||
require'lspconfig'.clangd.setup{}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user