add coq, todo-comments
Signed-off-by: Lucas Sta Maria <lucas@priime.dev>
This commit is contained in:
parent
ad10c1ea18
commit
f760d465b5
5 changed files with 78 additions and 64 deletions
|
@ -12,6 +12,7 @@ packer.startup(function()
|
|||
use("nvim-treesitter/nvim-treesitter")
|
||||
use("neovim/nvim-lspconfig")
|
||||
use("j-hui/fidget.nvim")
|
||||
use("onsails/lspkind-nvim")
|
||||
|
||||
-- ui
|
||||
use("ayu-theme/ayu-vim")
|
||||
|
@ -24,13 +25,11 @@ packer.startup(function()
|
|||
use("akinsho/toggleterm.nvim")
|
||||
|
||||
-- completion
|
||||
use("hrsh7th/nvim-cmp")
|
||||
use("hrsh7th/cmp-path")
|
||||
use("hrsh7th/cmp-buffer")
|
||||
use("hrsh7th/cmp-nvim-lsp")
|
||||
use("hrsh7th/cmp-nvim-lua")
|
||||
use("L3MON4D3/LuaSnip")
|
||||
use("saadparwaiz1/cmp_luasnip")
|
||||
use{"ms-jpq/coq_nvim",branch='coq'}
|
||||
|
||||
-- misc
|
||||
use("davidgranstrom/nvim-markdown-preview")
|
||||
use("folke/todo-comments.nvim")
|
||||
|
||||
if packer_bootstrap then
|
||||
require('packer').sync()
|
||||
|
@ -84,7 +83,7 @@ require('nvim-web-devicons').setup {}
|
|||
-- nvim-tree
|
||||
require('nvim-tree').setup {
|
||||
view = {
|
||||
width = 25,
|
||||
width = 35,
|
||||
signcolumn = "no",
|
||||
},
|
||||
diagnostics = {
|
||||
|
@ -106,5 +105,13 @@ require('lualine').setup {
|
|||
|
||||
-- toggleterm
|
||||
require('toggleterm').setup {
|
||||
open_mapping = [[<leader>ot]]
|
||||
open_mapping = nil
|
||||
}
|
||||
|
||||
-- markdown preview
|
||||
vim.cmd[[
|
||||
let g:mkdp_browser = 'surf'
|
||||
]]
|
||||
|
||||
-- todo-comments
|
||||
require('todo-comments').setup {}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue