summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authordec <declan-whiting@phoenixs.co.uk>2023-05-08 11:02:37 +0100
committerdec <declan-whiting@phoenixs.co.uk>2023-05-08 11:02:37 +0100
commit18a41fb759cedd77f8e830b969491cdab066c9d9 (patch)
treed04b184b93a32ac128909c25c11352f6a619dd20
parent039f3bc1eb77eb07c3743801dcc604282a1fba74 (diff)
downloaddots-18a41fb759cedd77f8e830b969491cdab066c9d9.tar.gz
Udated tree sitter to use latest release branch
-rw-r--r--nvim/init.lua30
1 files changed, 18 insertions, 12 deletions
diff --git a/nvim/init.lua b/nvim/init.lua
index e9e4caf..71e1ae5 100644
--- a/nvim/init.lua
+++ b/nvim/init.lua
@@ -35,7 +35,6 @@ I hope you enjoy your Neovim journey,
P.S. You can delete this when you're done too. It's your config now :)
--]]
-
-- Set <space> as the leader key
-- See `:help mapleader`
-- NOTE: Must happen before plugins are required (otherwise wrong leader will be used)
@@ -75,7 +74,8 @@ require('lazy').setup({
-- NOTE: This is where your plugins related to LSP can be installed.
-- The configuration is done below. Search for lspconfig to find it below.
- { -- LSP Configuration & Plugins
+ {
+ -- LSP Configuration & Plugins
'neovim/nvim-lspconfig',
dependencies = {
-- Automatically install LSPs to stdpath for neovim
@@ -84,21 +84,23 @@ require('lazy').setup({
-- Useful status updates for LSP
-- NOTE: `opts = {}` is the same as calling `require('fidget').setup({})`
- { 'j-hui/fidget.nvim', opts = {} },
+ { 'j-hui/fidget.nvim', opts = {} },
-- Additional lua configuration, makes nvim stuff amazing!
'folke/neodev.nvim',
},
},
- { -- Autocompletion
+ {
+ -- Autocompletion
'hrsh7th/nvim-cmp',
dependencies = { 'hrsh7th/cmp-nvim-lsp', 'L3MON4D3/LuaSnip', 'saadparwaiz1/cmp_luasnip',"rafamadriz/friendly-snippets", },
},
-- Useful plugin to show you pending keybinds.
- { 'folke/which-key.nvim', opts = {} },
- { -- Adds git releated signs to the gutter, as well as utilities for managing changes
+ { 'folke/which-key.nvim', opts = {} },
+ {
+ -- Adds git releated signs to the gutter, as well as utilities for managing changes
'lewis6991/gitsigns.nvim',
opts = {
-- See `:help gitsigns.txt`
@@ -117,7 +119,8 @@ require('lazy').setup({
},
},
- { -- Theme inspired by Atom
+ {
+ -- Theme inspired by Atom
'navarasu/onedark.nvim',
priority = 1000,
config = function()
@@ -125,7 +128,8 @@ require('lazy').setup({
end,
},
- { -- Set lualine as statusline
+ {
+ -- Set lualine as statusline
'nvim-lualine/lualine.nvim',
-- See `:help lualine.txt`
opts = {
@@ -138,7 +142,8 @@ require('lazy').setup({
},
},
- { -- Add indentation guides even on blank lines
+ {
+ -- Add indentation guides even on blank lines
'lukas-reineke/indent-blankline.nvim',
-- Enable `lukas-reineke/indent-blankline.nvim`
-- See `:help indent_blankline.txt`
@@ -149,10 +154,10 @@ require('lazy').setup({
},
-- "gc" to comment visual regions/lines
- { 'numToStr/Comment.nvim', opts = {} },
+ { 'numToStr/Comment.nvim', opts = {} },
-- Fuzzy Finder (files, lsp, etc)
- { 'nvim-telescope/telescope.nvim', version = '*', dependencies = { 'nvim-lua/plenary.nvim' } },
+ { 'nvim-telescope/telescope.nvim', branch = '0.1.x', dependencies = { 'nvim-lua/plenary.nvim' } },
-- Fuzzy Finder Algorithm which requires local dependencies to be built.
-- Only load if `make` is available. Make sure you have the system
@@ -167,7 +172,8 @@ require('lazy').setup({
end,
},
- { -- Highlight, edit, and navigate code
+ {
+ -- Highlight, edit, and navigate code
'nvim-treesitter/nvim-treesitter',
dependencies = {
'nvim-treesitter/nvim-treesitter-textobjects',