this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

:sparkles: (Nvim) treesitter url and settings

+19 -7
+1
home/neovim/lua/plugins/treesitter.lua
··· 1 1 return { 2 2 'nvim-treesitter/nvim-treesitter.nvim', 3 3 build = ":TSUpdate", 4 + url = 'git@github.com:nvim-treesitter/nvim-treesitter.git', 4 5 config = function () 5 6 local configs = require('nvim-treesitter.configs') 6 7
+18 -7
home/neovim/lua/user/settings.lua
··· 1 - vim.opt.number = true 2 - vim.opt.mouse = 'a' 3 - vim.opt.hlsearch = false 4 - vim.opt.tabstop = 4 5 - vim.opt.shiftwidth = 4 1 + local opt = { 2 + number = true, 3 + mouse = 'a', 4 + hlsearch = false, 5 + tabstop = 4, 6 + shiftwidth = 4, 7 + termguicolors = true, 8 + relativenumber = true, 9 + wrap = true, 10 + foldenable = false, 11 + foldmethod = 'indent', 12 + foldlevel = 5, 13 + showmatch = true, 14 + } 15 + 16 + for k, v in pairs(opt) do 17 + vim.opt[k] = v 18 + end 6 19 7 20 vim.g.netrw_banner = 0 8 21 vim.g.netrw_winsize = 30 9 22 10 23 vim.g.mapleader = ',' 11 - 12 - vim.opt.termguicolors = true