Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion nvim/lua/plugins/configs/treesitter.lua
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ plugin.setup({
tree_setter = {
enable = true,
},
ensure_installed = {
install = {
'bash',
'blade',
'css',
Expand Down
14 changes: 7 additions & 7 deletions nvim/lua/plugins/init.lua
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ require('lazy').setup({
'nvim-lua/plenary.nvim',
{
'nvim-telescope/telescope-fzf-native.nvim',
build = 'make',
build = 'cmake -S. -Bbuild -DCMAKE_BUILD_TYPE=Release && cmake --build build --config Release --target install',
},
'nvim-telescope/telescope-github.nvim',
'nvim-telescope/telescope-node-modules.nvim',
Expand Down Expand Up @@ -121,10 +121,14 @@ require('lazy').setup({
-- Treesitter
{
'nvim-treesitter/nvim-treesitter',
lazy = false,
build = ':TSUpdate',
config = function()
require('plugins.configs.treesitter')
end,
dependencies = {
'nvim-treesitter/nvim-treesitter-textobjects',
'nvim-treesitter/nvim-treesitter-refactor',
'p00f/nvim-ts-rainbow',
'nvim-treesitter/nvim-treesitter-locals',
'JoosepAlviste/nvim-ts-context-commentstring',
{
'windwp/nvim-ts-autotag',
Expand All @@ -134,10 +138,6 @@ require('lazy').setup({
},
'andymass/vim-matchup',
},
build = ':TSUpdate',
config = function()
require('plugins.configs.treesitter')
end,
},

-- Language Server Protocol
Expand Down
2 changes: 2 additions & 0 deletions shell/functions
Original file line number Diff line number Diff line change
Expand Up @@ -136,6 +136,7 @@ install_wsl_packages() {
shellcheck

# System
cmake
vim
tldr
git
Expand All @@ -145,6 +146,7 @@ install_wsl_packages() {
ripgrep
eza
fd-find
fzf
xsel
xclip
imagemagick
Expand Down