mirror of
https://github.com/gyoder/dots.git
synced 2026-02-27 17:03:45 +00:00
turing changes
This commit is contained in:
parent
a01bb5c0ed
commit
3e110044f2
6 changed files with 80 additions and 16 deletions
|
|
@ -71,12 +71,23 @@ vim.api.nvim_create_autocmd("FileType", {
|
|||
callback = function()
|
||||
-- Line wrapping settings
|
||||
vim.opt_local.textwidth = 80
|
||||
vim.opt_local.formatoptions = "atcqjnl"
|
||||
vim.opt_local.formatoptions = "tcqjnl"
|
||||
vim.opt_local.wrap = true
|
||||
vim.opt_local.linebreak = true
|
||||
|
||||
-- Show column guide
|
||||
vim.opt_local.colorcolumn = "80"
|
||||
|
||||
-- Toggle 'a' in formatoptions
|
||||
vim.keymap.set("n", "<leader>a", function()
|
||||
local fo = vim.opt_local.formatoptions:get()
|
||||
if fo.a then
|
||||
vim.opt_local.formatoptions:remove("a")
|
||||
print("Auto-formatting disabled")
|
||||
else
|
||||
vim.opt_local.formatoptions:append("a")
|
||||
print("Auto-formatting enabled")
|
||||
end
|
||||
end, { buffer = true, desc = "Toggle auto-formatting" })
|
||||
end,
|
||||
})
|
||||
-- Setup formatting on LSP attach
|
||||
|
|
|
|||
|
|
@ -44,6 +44,7 @@ vim.keymap.set('n', '<leader>fs', ts_builtins.lsp_workspace_symbols, { desc = 'T
|
|||
vim.keymap.set('n', '<leader>fts', ts_builtins.treesitter, { desc = 'Telescope find treesitter' })
|
||||
vim.keymap.set('n', '<leader>fd', ts_builtins.lsp_definitions, { desc = 'Telescope find definition' })
|
||||
vim.keymap.set('n', '<leader>ftd', ts_builtins.lsp_type_definitions, { desc = 'Telescope find type definition' })
|
||||
vim.keymap.set('n', '<leader>fr', ts_builtins.lsp_references, { desc = 'Telescope find references' })
|
||||
|
||||
-- Undo Tree
|
||||
vim.keymap.set('n', '<leader>u', vim.cmd.UndotreeToggle)
|
||||
|
|
@ -52,18 +53,18 @@ vim.keymap.set('n', '<leader>u', vim.cmd.UndotreeToggle)
|
|||
|
||||
local betterTerm = require('betterTerm')
|
||||
-- toggle firts term
|
||||
vim.keymap.set({"n", "t"}, "<leader>tt", betterTerm.open, { desc = "Open terminal"})
|
||||
vim.keymap.set({ "n", "t" }, "<leader>tt", betterTerm.open, { desc = "Open terminal" })
|
||||
-- Select term focus
|
||||
-- vim.keymap.set({"n"}, "<leader>tf", betterTerm.select, { desc = "Select terminal"})
|
||||
-- Create new term
|
||||
local current = 2
|
||||
vim.keymap.set(
|
||||
{"n"}, "<leader>tn",
|
||||
function()
|
||||
betterTerm.open(current)
|
||||
current = current + 1
|
||||
end,
|
||||
{ desc = "New terminal"}
|
||||
{ "n" }, "<leader>tn",
|
||||
function()
|
||||
betterTerm.open(current)
|
||||
current = current + 1
|
||||
end,
|
||||
{ desc = "New terminal" }
|
||||
)
|
||||
|
||||
-- Neotree
|
||||
|
|
@ -84,15 +85,11 @@ vim.keymap.set('n', '<C-b>', function()
|
|||
ntc.execute({
|
||||
action = "focus", -- OPTIONAL, this is the default value
|
||||
source = "filesystem", -- OPTIONAL, this is the default value
|
||||
position = "right", -- OPTIONAL, this is the default value
|
||||
position = "right", -- OPTIONAL, this is the default value
|
||||
reveal_file = reveal_file, -- path to file or folder to reveal
|
||||
reveal_force_cwd = true, -- change cwd without asking if needed
|
||||
toggle = true,
|
||||
}) end,
|
||||
})
|
||||
end,
|
||||
{ desc = "Show Sidebar" }
|
||||
)
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue