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

Compare commits

..

10 Commits

Author SHA1 Message Date
Daniel Barber
df8050683c Swap startify for dashboard 2023-05-02 22:20:55 -05:00
Daniel Barber
ef20670ca5 Update plugins 2023-05-02 22:19:44 -05:00
Daniel Barber
7a3c86f0f4 Neovide config 2023-05-02 22:19:25 -05:00
Daniel Barber
8d11026e44 Update plugins 2023-04-28 17:10:13 -05:00
Daniel Barber
40da924976 Update keymap 2023-04-28 17:10:05 -05:00
Daniel Barber
534848d32e Update nvim options 2023-04-28 17:09:49 -05:00
Daniel Barber
66170163b8 Update plugins 2023-04-25 14:30:00 -05:00
Daniel Barber
2316cbf946 Fix Treesitter config 2023-04-25 14:29:52 -05:00
Daniel Barber
babc1a8796 Add nerdcommenter and fugitive 2023-04-25 14:29:34 -05:00
Daniel Barber
46ef569dfa Configure LSP for Learnzillion 2023-04-07 15:42:58 -05:00
5 changed files with 8 additions and 22 deletions

View File

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

View File

@ -3,6 +3,5 @@ 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.rust")
-- require("config.plugins.lspconfig.ruby")
end

View File

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

View File

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