Merge branch 'master' of github.com:ChristianChiarulli/LunarVim into stable

This commit is contained in:
christianchiarulli 2021-07-04 01:45:13 -04:00
commit bc720781eb
6 changed files with 139 additions and 79 deletions

View file

@ -23,7 +23,8 @@ require'lspconfig'.sumneko_lua.setup {
[vim.fn.expand('$VIMRUNTIME/lua')] = true, [vim.fn.expand('$VIMRUNTIME/lua')] = true,
[vim.fn.expand('$VIMRUNTIME/lua/vim/lsp')] = true [vim.fn.expand('$VIMRUNTIME/lua/vim/lsp')] = true
}, },
maxPreload = 10000 maxPreload = 100000,
preloadFileSize = 1000
} }
} }
} }

View file

@ -1,4 +1,5 @@
local opts = { if O.lang.rust.rust_tools.active then
local opts = {
tools = { -- rust-tools options tools = { -- rust-tools options
-- automatically set inlay hints (type hints) -- automatically set inlay hints (type hints)
-- There is an issue due to which the hints are not applied on the first -- There is an issue due to which the hints are not applied on the first
@ -65,11 +66,22 @@ local opts = {
cmd = {DATA_PATH .. "/lspinstall/rust/rust-analyzer"}, cmd = {DATA_PATH .. "/lspinstall/rust/rust-analyzer"},
on_attach = require'lsp'.common_on_attach on_attach = require'lsp'.common_on_attach
} -- rust-analyser options } -- rust-analyser options
} }
require('rust-tools').setup(opts)
require('rust-tools').setup(opts) else
-- TODO add this later require'lspconfig'.rust_analyzer.setup {
cmd = {DATA_PATH .. "/lspinstall/rust/rust-analyzer"},
on_attach = require'lsp'.common_on_attach,
filetypes = {"rust"},
root_dir = require'lspconfig.util'.root_pattern("Cargo.toml",
"rust-project.json")
}
end
-- TODO fix these mappings
vim.api.nvim_exec([[ vim.api.nvim_exec([[
autocmd Filetype rust nnoremap <leader>lm <Cmd>RustExpandMacro<CR> autocmd Filetype rust nnoremap <leader>lm <Cmd>RustExpandMacro<CR>
autocmd Filetype rust nnoremap <leader>lH <Cmd>RustToggleInlayHints<CR> autocmd Filetype rust nnoremap <leader>lH <Cmd>RustToggleInlayHints<CR>

View file

@ -167,6 +167,9 @@ O = {
yaml = {}, yaml = {},
terraform = {}, terraform = {},
rust = { rust = {
rust_tools = {
active = false
},
linter = '', linter = '',
formatter = '', formatter = '',
autoformat = false, autoformat = false,

View file

@ -1,3 +0,0 @@
vim.api.nvim_set_keymap('n', '<TAB>', ':BufferNext<CR>', { noremap = true, silent = true })
vim.api.nvim_set_keymap('n', '<S-TAB>', ':BufferPrevious<CR>', { noremap = true, silent = true })
vim.api.nvim_set_keymap('n', '<S-x>', ':BufferClose<CR>', { noremap = true, silent = true })

View file

@ -0,0 +1,52 @@
local M = {}
M.config = function()
require('bufferline').setup {
options = {
-- numbers = "none" | "ordinal" | "buffer_id" | "both",
-- number_style = "superscript" | "" | { "none", "subscript" }, -- buffer_id at index 1, ordinal at index 2
-- mappings = true | false,
-- close_command = "bdelete! %d", -- can be a string | function, see "Mouse actions"
-- right_mouse_command = "bdelete! %d", -- can be a string | function, see "Mouse actions"
-- left_mouse_command = "buffer %d", -- can be a string | function, see "Mouse actions"
middle_mouse_command = nil, -- can be a string | function, see "Mouse actions"
indicator_icon = '',
buffer_close_icon = '',
modified_icon = '',
close_icon = '',
left_trunc_marker = '',
right_trunc_marker = '',
--- name_formatter can be used to change the buffer's label in the bufferline.
--- Please note some names can/will break the
--- bufferline so use this at your discretion knowing that it has
--- some limitations that will *NOT* be fixed.
-- name_formatter = function(buf) -- buf contains a "name", "path" and "bufnr"
-- -- remove extension from markdown files for example
-- if buf.name:match('%.md') then
-- return vim.fn.fnamemodify(buf.name, ':t:r')
-- end
-- end,
max_name_length = 18,
max_prefix_length = 15, -- prefix used when a buffer is de-duplicated
tab_size = 18,
-- diagnostics = "nvim_lsp",
offsets = {{filetype = "NvimTree", text = "File Explorer", text_align = "left", padding = 1}},
-- show_buffer_icons = true | false, -- disable filetype icons for buffers
show_buffer_close_icons = true
-- show_close_icon = true | false,
-- show_tab_indicators = true | false,
-- persist_buffer_sort = true, -- whether or not custom sorted buffers should persist
-- can also be a table containing 2 custom separators
-- [focused and unfocused]. eg: { '|', '|' }
-- separator_style = "slant" | "thick" | "thin" | { 'any', 'any' },
-- enforce_regular_tabs = false | true,
-- always_show_bufferline = true | false,
-- sort_by = 'extension' | 'relative_directory' | 'directory' | function(buffer_a, buffer_b)
-- add custom logic
-- return buffer_a.modified > buffer_b.modified
-- end
}
}
end
return M

View file

@ -114,15 +114,9 @@ return require("packer").startup(function(use)
use {"glepnir/galaxyline.nvim"} use {"glepnir/galaxyline.nvim"}
use { use {
"romgrk/barbar.nvim", "akinsho/nvim-bufferline.lua",
config = function() config = function()
vim.api.nvim_set_keymap('n', '<TAB>', ':BufferNext<CR>', require("lv-bufferline").config()
{noremap = true, silent = true})
vim.api.nvim_set_keymap('n', '<S-TAB>', ':BufferPrevious<CR>',
{noremap = true, silent = true})
vim.api.nvim_set_keymap('n', '<S-x>', ':BufferClose<CR>',
{noremap = true, silent = true})
end, end,
event = "BufRead" event = "BufRead"
@ -228,8 +222,9 @@ return require("packer").startup(function(use)
vim.g.indentLine_enabled = 1 vim.g.indentLine_enabled = 1
vim.g.indent_blankline_char = "" vim.g.indent_blankline_char = ""
vim.g.indent_blankline_filetype_exclude = vim.g.indent_blankline_filetype_exclude = {
{"help", "terminal", "dashboard"} "help", "terminal", "dashboard"
}
vim.g.indent_blankline_buftype_exclude = {"terminal"} vim.g.indent_blankline_buftype_exclude = {"terminal"}
vim.g.indent_blankline_show_trailing_blankline_indent = false vim.g.indent_blankline_show_trailing_blankline_indent = false
@ -378,7 +373,7 @@ return require("packer").startup(function(use)
cmd = "LazyGit", cmd = "LazyGit",
disable = not O.plugin.lazygit.active disable = not O.plugin.lazygit.active
} }
-- Lazygit -- Octo
use { use {
"pwntester/octo.nvim", "pwntester/octo.nvim",
event = "BufRead", event = "BufRead",
@ -401,7 +396,7 @@ return require("packer").startup(function(use)
use { use {
"rktjmp/lush.nvim", "rktjmp/lush.nvim",
-- cmd = {"LushRunQuickstart", "LushRunTutorial", "Lushify"}, -- cmd = {"LushRunQuickstart", "LushRunTutorial", "Lushify"},
disable = not O.plugin.lush.active, disable = not O.plugin.lush.active
} }
-- HTML preview -- HTML preview
use { use {