treesitter almost fixed
This commit is contained in:
parent
d2c7d381d0
commit
cfa2de4792
@ -6,24 +6,25 @@ return function(use)
|
|||||||
-- Prevents reinstall of treesitter plugins every boot
|
-- Prevents reinstall of treesitter plugins every boot
|
||||||
vim.opt.runtimepath:append(parser_install_dir)
|
vim.opt.runtimepath:append(parser_install_dir)
|
||||||
|
|
||||||
-- Treesitter is managed by the package config, we just manage configs/deps here
|
-- Treesitter is managed by the package config, we just manage configs/deps here
|
||||||
-- use({ "nvim-treesitter/nvim-treesitter-refactor" })
|
use({ "nvim-treesitter/nvim-treesitter-refactor" })
|
||||||
-- use({ "RRethy/nvim-treesitter-textsubjects" })
|
use({ "RRethy/nvim-treesitter-textsubjects" })
|
||||||
-- require("nvim-treesitter.configs").setup({
|
|
||||||
-- highlight = { enable = true, disable = { "lua" } },
|
require("nvim-treesitter.configs").setup({
|
||||||
-- indent = { enable = true },
|
-- highlight = { enable = true, disable = { "lua" } },
|
||||||
-- refactor = { highlight_definitions = { enable = true } },
|
-- indent = { enable = true },
|
||||||
-- incremental_selection = { enable = true },
|
-- refactor = { highlight_definitions = { enable = true } },
|
||||||
-- matchup = { enable = true },
|
-- incremental_selection = { enable = true },
|
||||||
-- textsubjects = {
|
-- matchup = { enable = true },
|
||||||
-- enable = true,
|
-- textsubjects = {
|
||||||
-- prev_selection = ",",
|
-- enable = true,
|
||||||
-- keymaps = {
|
-- prev_selection = ",",
|
||||||
-- ["."] = "textsubjects-smart",
|
-- keymaps = {
|
||||||
-- },
|
-- ["."] = "textsubjects-smart",
|
||||||
-- },
|
-- },
|
||||||
-- parser_install_dir = parser_install_dir,
|
-- },
|
||||||
-- })
|
parser_install_dir = parser_install_dir,
|
||||||
|
})
|
||||||
|
|
||||||
use({'atelierbram/vim-colors_atelier-schemes'})
|
use({'atelierbram/vim-colors_atelier-schemes'})
|
||||||
use({'robertmeta/nofrils'})
|
use({'robertmeta/nofrils'})
|
||||||
|
@ -40,7 +40,7 @@ vim.opt.undofile = true
|
|||||||
vim.opt.number = true
|
vim.opt.number = true
|
||||||
vim.opt.relativenumber = true
|
vim.opt.relativenumber = true
|
||||||
|
|
||||||
vim.g.colors = "Atelier_SulphurpoolDark"
|
vim.cmd 'colorscheme Atelier_SulphurpoolDark'
|
||||||
vim.g.floaterm_keymap_toggle = '<F9>'
|
vim.g.floaterm_keymap_toggle = '<F9>'
|
||||||
vim.g.floaterm_width = 0.9
|
vim.g.floaterm_width = 0.9
|
||||||
vim.g.floaterm_height = 0.9
|
vim.g.floaterm_height = 0.9
|
||||||
|
16
home/config/nvim/lua/utils/init.lua
Normal file
16
home/config/nvim/lua/utils/init.lua
Normal file
@ -0,0 +1,16 @@
|
|||||||
|
local utils = { }
|
||||||
|
|
||||||
|
local scopes = {o = vim.o, b = vim.bo, w = vim.wo}
|
||||||
|
|
||||||
|
function utils.opt(scope, key, value)
|
||||||
|
scopes[scope][key] = value
|
||||||
|
if scope ~= 'o' then scopes['o'][key] = value end
|
||||||
|
end
|
||||||
|
|
||||||
|
function utils.map(mode, lhs, rhs, opts)
|
||||||
|
local options = {noremap = true}
|
||||||
|
if opts then options = vim.tbl_extend('force', options, opts) end
|
||||||
|
vim.api.nvim_set_keymap(mode, lhs, rhs, options)
|
||||||
|
end
|
||||||
|
|
||||||
|
return utils
|
Loading…
Reference in New Issue
Block a user