Formatting
This commit is contained in:
74
init.lua
74
init.lua
@@ -15,17 +15,22 @@ vim.opt.termguicolors = true
|
|||||||
vim.opt.completeopt = "menu,menuone,noselect"
|
vim.opt.completeopt = "menu,menuone,noselect"
|
||||||
vim.opt.cursorline = true
|
vim.opt.cursorline = true
|
||||||
|
|
||||||
vim.api.nvim_create_autocmd("FileType", { pattern = { "org" }, command = "setlocal nowrap" })
|
vim.api.nvim_create_autocmd('FileType', { pattern = 'org', command = 'setlocal nowrap' })
|
||||||
|
vim.api.nvim_create_autocmd('TextYankPost', {
|
||||||
|
pattern = '*',
|
||||||
|
callback = function()
|
||||||
|
vim.highlight.on_yank { higroup = 'IncSearch' }
|
||||||
|
end,
|
||||||
|
})
|
||||||
|
|
||||||
local ensure_packer = function()
|
local ensure_packer = function()
|
||||||
local fn = vim.fn
|
local install_path = vim.fn.stdpath('data') .. '/site/pack/packer/start/packer.nvim'
|
||||||
local install_path = fn.stdpath('data')..'/site/pack/packer/start/packer.nvim'
|
if vim.fn.empty(vim.fn.glob(install_path)) > 0 then
|
||||||
if fn.empty(fn.glob(install_path)) > 0 then
|
vim.fn.system({ 'git', 'clone', '--depth', '1', 'https://github.com/wbthomason/packer.nvim', install_path })
|
||||||
fn.system({'git', 'clone', '--depth', '1', 'https://github.com/wbthomason/packer.nvim', install_path})
|
vim.cmd [[packadd packer.nvim]]
|
||||||
vim.cmd [[packadd packer.nvim]]
|
return true
|
||||||
return true
|
end
|
||||||
end
|
return false
|
||||||
return false
|
|
||||||
end
|
end
|
||||||
local packer_bootstrap = ensure_packer()
|
local packer_bootstrap = ensure_packer()
|
||||||
|
|
||||||
@@ -57,19 +62,19 @@ require('packer').startup(function(use)
|
|||||||
use { 'nvim-orgmode/orgmode', config = function()
|
use { 'nvim-orgmode/orgmode', config = function()
|
||||||
require('orgmode').setup_ts_grammar()
|
require('orgmode').setup_ts_grammar()
|
||||||
|
|
||||||
require'nvim-treesitter.configs'.setup {
|
require 'nvim-treesitter.configs'.setup {
|
||||||
highlight = {
|
highlight = {
|
||||||
enable = true,
|
enable = true,
|
||||||
additional_vim_regex_highlighting = {'org'}, -- Required for spellcheck, some LaTex highlights and code block highlights that do not have ts grammar
|
additional_vim_regex_highlighting = { 'org' }, -- Required for spellcheck, some LaTex highlights and code block highlights that do not have ts grammar
|
||||||
},
|
},
|
||||||
ensure_installed = {'org'}, -- Or run :TSUpdate org
|
ensure_installed = { 'org' }, -- Or run :TSUpdate org
|
||||||
}
|
}
|
||||||
|
|
||||||
require('orgmode').setup({
|
require('orgmode').setup({
|
||||||
org_agenda_files = {'~/Sync/Notes/*'},
|
org_agenda_files = { '~/Sync/Notes/*' },
|
||||||
org_default_notes_file = '~/Sync/Notes/Main.org',
|
org_default_notes_file = '~/Sync/Notes/Main.org',
|
||||||
})
|
})
|
||||||
end}
|
end }
|
||||||
|
|
||||||
use {
|
use {
|
||||||
"catppuccin/nvim",
|
"catppuccin/nvim",
|
||||||
@@ -146,21 +151,21 @@ require('packer').startup(function(use)
|
|||||||
'VonHeikemen/lsp-zero.nvim',
|
'VonHeikemen/lsp-zero.nvim',
|
||||||
requires = {
|
requires = {
|
||||||
-- LSP Support
|
-- LSP Support
|
||||||
{'neovim/nvim-lspconfig'},
|
{ 'neovim/nvim-lspconfig' },
|
||||||
{'williamboman/mason.nvim'},
|
{ 'williamboman/mason.nvim' },
|
||||||
{'williamboman/mason-lspconfig.nvim'},
|
{ 'williamboman/mason-lspconfig.nvim' },
|
||||||
|
|
||||||
-- Autocompletion
|
-- Autocompletion
|
||||||
{'hrsh7th/nvim-cmp'},
|
{ 'hrsh7th/nvim-cmp' },
|
||||||
{'hrsh7th/cmp-buffer'},
|
{ 'hrsh7th/cmp-buffer' },
|
||||||
{'hrsh7th/cmp-path'},
|
{ 'hrsh7th/cmp-path' },
|
||||||
{'saadparwaiz1/cmp_luasnip'},
|
{ 'saadparwaiz1/cmp_luasnip' },
|
||||||
{'hrsh7th/cmp-nvim-lsp'},
|
{ 'hrsh7th/cmp-nvim-lsp' },
|
||||||
{'hrsh7th/cmp-nvim-lua'},
|
{ 'hrsh7th/cmp-nvim-lua' },
|
||||||
|
|
||||||
-- Snippets
|
-- Snippets
|
||||||
{'L3MON4D3/LuaSnip'},
|
{ 'L3MON4D3/LuaSnip' },
|
||||||
{'rafamadriz/friendly-snippets'},
|
{ 'rafamadriz/friendly-snippets' },
|
||||||
},
|
},
|
||||||
config = function()
|
config = function()
|
||||||
local lsp = require('lsp-zero')
|
local lsp = require('lsp-zero')
|
||||||
@@ -188,7 +193,7 @@ require('packer').startup(function(use)
|
|||||||
use {
|
use {
|
||||||
'JoosepAlviste/nvim-ts-context-commentstring',
|
'JoosepAlviste/nvim-ts-context-commentstring',
|
||||||
config = function()
|
config = function()
|
||||||
require'nvim-treesitter.configs'.setup({
|
require 'nvim-treesitter.configs'.setup({
|
||||||
context_commentstring = {
|
context_commentstring = {
|
||||||
enable = true
|
enable = true
|
||||||
}
|
}
|
||||||
@@ -200,7 +205,7 @@ require('packer').startup(function(use)
|
|||||||
'goolord/alpha-nvim',
|
'goolord/alpha-nvim',
|
||||||
requires = { 'kyazdani42/nvim-web-devicons' },
|
requires = { 'kyazdani42/nvim-web-devicons' },
|
||||||
config = function()
|
config = function()
|
||||||
require'alpha'.setup(require'alpha.themes.startify'.config)
|
require 'alpha'.setup(require 'alpha.themes.startify'.config)
|
||||||
end
|
end
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -213,7 +218,7 @@ require('packer').startup(function(use)
|
|||||||
|
|
||||||
use {
|
use {
|
||||||
'alexghergh/nvim-tmux-navigation', config = function()
|
'alexghergh/nvim-tmux-navigation', config = function()
|
||||||
require'nvim-tmux-navigation'.setup {
|
require 'nvim-tmux-navigation'.setup {
|
||||||
keybindings = {
|
keybindings = {
|
||||||
left = "<C-h>",
|
left = "<C-h>",
|
||||||
down = "<C-j>",
|
down = "<C-j>",
|
||||||
@@ -242,7 +247,10 @@ require('packer').startup(function(use)
|
|||||||
|
|
||||||
use {
|
use {
|
||||||
"akinsho/toggleterm.nvim", tag = '*', config = function()
|
"akinsho/toggleterm.nvim", tag = '*', config = function()
|
||||||
require("toggleterm").setup({ direction = 'float' })
|
require("toggleterm").setup({
|
||||||
|
direction = 'float',
|
||||||
|
open_mapping = [[<c-t>]]
|
||||||
|
})
|
||||||
end
|
end
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -261,9 +269,9 @@ require('packer').startup(function(use)
|
|||||||
end
|
end
|
||||||
}
|
}
|
||||||
|
|
||||||
if packer_bootstrap then
|
if packer_bootstrap then
|
||||||
require('packer').sync()
|
require('packer').sync()
|
||||||
end
|
end
|
||||||
end)
|
end)
|
||||||
|
|
||||||
local wk = require("which-key")
|
local wk = require("which-key")
|
||||||
@@ -284,6 +292,7 @@ wk.register({
|
|||||||
r = { "<cmd>Telescope oldfiles<cr>", "Recent Files" },
|
r = { "<cmd>Telescope oldfiles<cr>", "Recent Files" },
|
||||||
b = { "<cmd>Telescope buffers<cr>", "Buffers" },
|
b = { "<cmd>Telescope buffers<cr>", "Buffers" },
|
||||||
},
|
},
|
||||||
|
F = { ":lua vim.lsp.buf.format()<cr>", "Format Buffer" },
|
||||||
J = { ":SplitjoinJoin<cr>", "Join" },
|
J = { ":SplitjoinJoin<cr>", "Join" },
|
||||||
t = {
|
t = {
|
||||||
name = "Table",
|
name = "Table",
|
||||||
@@ -302,5 +311,4 @@ wk.register({
|
|||||||
},
|
},
|
||||||
["<S-l>"] = { ":BufferLineCycleNext<cr>", "Next Tab" },
|
["<S-l>"] = { ":BufferLineCycleNext<cr>", "Next Tab" },
|
||||||
["<S-h>"] = { ":BufferLineCyclePrev<cr>", "Previous Tab" },
|
["<S-h>"] = { ":BufferLineCyclePrev<cr>", "Previous Tab" },
|
||||||
["<C-t>"] = { ":ToggleTerm<cr>", "Terminal" },
|
|
||||||
})
|
})
|
||||||
|
|||||||
Reference in New Issue
Block a user