* refactor(defaults.lua): remove trailing whitespace
* feat(defaults.lua): add swapfile option and set it to false * refactor(keymaps.lua): add whitespace for readability * feat(keymaps.lua): add keymap to open folder in workspace in tmux session * feat(keymaps.lua): add keymaps for buffer delete and buffer wipeout * chore(treesitter.lua): remove treesitter configuration file * chore(init.lua): comment out debug plugin * feat(init.lua): enable auto_install for nvim-treesitter * feat(custom/plugins/init.lua): add bufdelete.nvim plugin to custom plugins list
This commit is contained in:
parent
d20aea7ca4
commit
5c8fa11c53
5 changed files with 18 additions and 13 deletions
4
init.lua
4
init.lua
|
|
@ -180,7 +180,7 @@ require('lazy').setup({
|
|||
-- These are some example plugins that I've included in the kickstart repository.
|
||||
-- Uncomment any of the lines below to enable them.
|
||||
require 'kickstart.plugins.autoformat',
|
||||
require 'kickstart.plugins.debug',
|
||||
-- require 'kickstart.plugins.debug',
|
||||
|
||||
-- NOTE: The import below automatically adds your own plugins, configuration, etc from `lua/custom/plugins/*.lua`
|
||||
-- You can use this folder to prevent any conflicts with this init.lua if you're interested in keeping
|
||||
|
|
@ -295,7 +295,7 @@ require('nvim-treesitter.configs').setup {
|
|||
ensure_installed = { 'c', 'cpp', 'go', 'lua', 'python', 'rust', 'tsx', 'typescript', 'help', 'vim' },
|
||||
|
||||
-- Autoinstall languages that are not installed. Defaults to false (but you can change for yourself!)
|
||||
auto_install = false,
|
||||
auto_install = true,
|
||||
|
||||
highlight = { enable = true },
|
||||
indent = { enable = true, disable = { 'python' } },
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue