22 Commits

Author SHA1 Message Date
TJ DeVries
8ff0f35da1 finally done 2024-02-26 09:53:08 -05:00
TJ DeVries
30a1ccc89b health check 2024-02-26 08:55:52 -05:00
TJ DeVries
5775433158 add some more grammars for readme 2024-02-24 23:17:19 -05:00
TJ DeVries
1e3ba58a40 add capabilities check 2024-02-24 23:15:25 -05:00
TJ DeVries
51842d8064 fixup: update docs and check deps 2024-02-23 16:53:32 -05:00
TJ DeVries
0f8eb177da fixup: remove help, it's vimdoc 2024-02-23 15:18:25 -05:00
TJ DeVries
9837e7ed38 force lua install an rest 2024-02-23 14:07:36 -05:00
TJ DeVries
48c88b73be force lua install 2024-02-23 14:02:48 -05:00
TJ DeVries
dacbbf59c2 remove lazy lock 2024-02-23 13:46:14 -05:00
TJ DeVries
bad5a2d0b8 finished? please test 2024-02-23 13:45:18 -05:00
TJ DeVries
65cbba91ab yayaya 2024-02-23 12:51:28 -05:00
TJ DeVries
532dbef6b4 final stretch 2024-02-23 09:39:46 -05:00
TJ DeVries
95d8863806 time to proof read 2024-02-22 15:25:47 -05:00
TJ DeVries
1b9467751a ok fix 2024-02-22 14:36:41 -05:00
TJ DeVries
ceadebd22d yes, i'm pushing updates 2024-02-22 14:30:44 -05:00
TJ DeVries
2022a26e28 for zd 2024-02-22 14:16:49 -05:00
TJ DeVries
f1d3a3c32f this one is for KD 2024-02-22 13:14:05 -05:00
TJ DeVries
e9f8139fcf wip: more work from twitch 2024-02-21 15:56:24 -05:00
TJ DeVries
2d9bfa0bb7 wip: more work from twitch 2024-02-21 14:10:45 -05:00
TJ DeVries
e419aa5ef6 wip: more work from twitch 2024-02-21 12:10:21 -05:00
TJ DeVries
c0ccf101ad wip: starting from stream 2024-02-21 09:40:30 -05:00
TJ DeVries
1bc4bfc2fe wip: start exploring some new ideas 2024-02-21 00:17:30 -05:00
2 changed files with 1 additions and 13 deletions

View File

@@ -183,11 +183,6 @@ return {
Installation may require installing build tools, and updating the run command for `telescope-fzf-native`
Users should follow the [Treesitter Windows
Installation](https://github.com/nvim-treesitter/nvim-treesitter/wiki/Windows-support)
instructions to allow Treesitter language extensions to be downloaded from
Github.
See `telescope-fzf-native` documentation for [more details](https://github.com/nvim-telescope/telescope-fzf-native.nvim#installation)
This requires:

View File

@@ -184,14 +184,10 @@ vim.keymap.set('n', '<C-l>', '<C-w><C-l>', { desc = 'Move focus to the right win
vim.keymap.set('n', '<C-j>', '<C-w><C-j>', { desc = 'Move focus to the lower window' })
vim.keymap.set('n', '<C-k>', '<C-w><C-k>', { desc = 'Move focus to the upper window' })
-- [[ Basic Autocommands ]]
-- See :help lua-guide-autocommands
-- Highlight when yanking (copying) text
-- Try it with `yap` in normal mode
-- See `:help vim.highlight.on_yank()`
vim.api.nvim_create_autocmd('TextYankPost', {
desc = 'Highlight when yanking (copying) text',
group = vim.api.nvim_create_augroup('kickstart-highlight-yank', { clear = true }),
callback = function()
vim.highlight.on_yank()
@@ -771,14 +767,11 @@ require('lazy').setup({
build = ':TSUpdate',
config = function()
-- [[ Configure Treesitter ]] See `:help nvim-treesitter`
-- Use precompiled binaries for faster startup.
-- This also means Windows users won't fail on startup by default.
require('nvim-treesitter.install').prefer_git = false
---@diagnostic disable-next-line: missing-fields
require('nvim-treesitter.configs').setup {
ensure_installed = { 'bash', 'c', 'html', 'lua', 'markdown', 'vim', 'vimdoc' },
-- Autoinstall languages that are not installed
-- Autoinstall languages that are not installed. Defaults to false (but you can change for yourself!)
auto_install = true,
highlight = { enable = true },
indent = { enable = true },