1
0
mirror of https://github.com/danbee/dotfiles-local synced 2025-03-04 08:49:07 +00:00

Compare commits

..

13 Commits

Author SHA1 Message Date
4949356449 Add dashboard header 2023-05-02 23:15:42 -05:00
Daniel Barber
832bd0e94e Swap startify for dashboard 2023-05-02 22:28:08 -05:00
Daniel Barber
e96dec97ab Update plugins 2023-05-02 22:28:08 -05:00
Daniel Barber
7d536ba184 Neovide config 2023-05-02 22:28:06 -05:00
9fb4f8a6bb 80 columns 2023-04-28 17:19:37 -05:00
Daniel Barber
fb3b28b777 Update plugins 2023-04-28 17:17:44 -05:00
Daniel Barber
da69a9eba7 Update keymap 2023-04-28 17:17:44 -05:00
Daniel Barber
1d10668cd6 Update nvim options 2023-04-28 17:17:44 -05:00
Daniel Barber
7e3a2cf5e9 Update plugins 2023-04-28 17:17:44 -05:00
Daniel Barber
d9a16ecf09 Fix Treesitter config 2023-04-28 17:17:44 -05:00
Daniel Barber
8ccc95f84e Add nerdcommenter and fugitive 2023-04-28 17:17:44 -05:00
Daniel Barber
eb8d759915 Configure LSP for Learnzillion 2023-04-28 17:17:43 -05:00
60809d53f3 Add rust LSP config 2023-04-28 17:15:15 -05:00
5 changed files with 22 additions and 8 deletions

View File

@ -19,7 +19,7 @@ vim.opt.number = true
-- Line width
local colorcolumns = {}
for i = 1, 40 do
table.insert(colorcolumns, string.format("+%i", i))
table.insert(colorcolumns, string.format("+%i", i))
end
vim.opt.textwidth = 80
@ -31,6 +31,6 @@ vim.opt.splitright = true
-- Neovide
if vim.g.neovide then
vim.g.neovide_cursor_animation_length = 0
vim.g.neovide_background_color = "#20252c"
vim.g.neovide_cursor_animation_length = 0
vim.g.neovide_background_color = "#20252c"
end

View File

@ -0,0 +1,15 @@
return function()
require("dashboard").setup({
theme = "hyper",
config = {
header = {
[[ ███╗ ██╗ ███████╗ ██████╗ ██╗ ██╗ ██╗ ███╗ ███╗]],
[[ ████╗ ██║ ██╔════╝██╔═══██╗ ██║ ██║ ██║ ████╗ ████║]],
[[ ██╔██╗ ██║ █████╗ ██║ ██║ ██║ ██║ ██║ ██╔████╔██║]],
[[ ██║╚██╗██║ ██╔══╝ ██║ ██║ ╚██╗ ██╔╝ ██║ ██║╚██╔╝██║]],
[[ ██║ ╚████║ ███████╗╚██████╔╝ ╚████╔╝ ██║ ██║ ╚═╝ ██║]],
[[ ╚═╝ ╚═══╝ ╚══════╝ ╚═════╝ ╚═══╝ ╚═╝ ╚═╝ ╚═╝]],
}
}
})
end

View File

@ -3,5 +3,6 @@ return function()
require("config.plugins.lspconfig.emmet")
require("config.plugins.lspconfig.javascript")
require("config.plugins.lspconfig.lua")
-- require("config.plugins.lspconfig.ruby")
require("config.plugins.lspconfig.ruby")
require("config.plugins.lspconfig.rust")
end

View File

@ -0,0 +1 @@
require("lspconfig").rust_analyzer.setup({})

View File

@ -16,10 +16,7 @@ return {
{
"glepnir/dashboard-nvim",
event = "VimEnter",
config = function()
require("dashboard").setup({
})
end,
config = require("config.plugins.dashboard"),
dependencies = { { "nvim-tree/nvim-web-devicons" } },
},
{