mirror of
https://github.com/danbee/dotfiles-local
synced 2025-03-04 08:49:07 +00:00
Compare commits
10 Commits
4949356449
...
df8050683c
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
df8050683c | ||
|
|
ef20670ca5 | ||
|
|
7a3c86f0f4 | ||
|
|
8d11026e44 | ||
|
|
40da924976 | ||
|
|
534848d32e | ||
|
|
66170163b8 | ||
|
|
2316cbf946 | ||
|
|
babc1a8796 | ||
|
|
46ef569dfa |
@ -19,7 +19,7 @@ vim.opt.number = true
|
|||||||
-- Line width
|
-- Line width
|
||||||
local colorcolumns = {}
|
local colorcolumns = {}
|
||||||
for i = 1, 40 do
|
for i = 1, 40 do
|
||||||
table.insert(colorcolumns, string.format("+%i", i))
|
table.insert(colorcolumns, string.format("+%i", i))
|
||||||
end
|
end
|
||||||
|
|
||||||
vim.opt.textwidth = 80
|
vim.opt.textwidth = 80
|
||||||
@ -31,6 +31,6 @@ vim.opt.splitright = true
|
|||||||
|
|
||||||
-- Neovide
|
-- Neovide
|
||||||
if vim.g.neovide then
|
if vim.g.neovide then
|
||||||
vim.g.neovide_cursor_animation_length = 0
|
vim.g.neovide_cursor_animation_length = 0
|
||||||
vim.g.neovide_background_color = "#20252c"
|
vim.g.neovide_background_color = "#20252c"
|
||||||
end
|
end
|
||||||
|
|||||||
@ -1,15 +0,0 @@
|
|||||||
return function()
|
|
||||||
require("dashboard").setup({
|
|
||||||
theme = "hyper",
|
|
||||||
config = {
|
|
||||||
header = {
|
|
||||||
[[ ███╗ ██╗ ███████╗ ██████╗ ██╗ ██╗ ██╗ ███╗ ███╗]],
|
|
||||||
[[ ████╗ ██║ ██╔════╝██╔═══██╗ ██║ ██║ ██║ ████╗ ████║]],
|
|
||||||
[[ ██╔██╗ ██║ █████╗ ██║ ██║ ██║ ██║ ██║ ██╔████╔██║]],
|
|
||||||
[[ ██║╚██╗██║ ██╔══╝ ██║ ██║ ╚██╗ ██╔╝ ██║ ██║╚██╔╝██║]],
|
|
||||||
[[ ██║ ╚████║ ███████╗╚██████╔╝ ╚████╔╝ ██║ ██║ ╚═╝ ██║]],
|
|
||||||
[[ ╚═╝ ╚═══╝ ╚══════╝ ╚═════╝ ╚═══╝ ╚═╝ ╚═╝ ╚═╝]],
|
|
||||||
}
|
|
||||||
}
|
|
||||||
})
|
|
||||||
end
|
|
||||||
@ -3,6 +3,5 @@ return function()
|
|||||||
require("config.plugins.lspconfig.emmet")
|
require("config.plugins.lspconfig.emmet")
|
||||||
require("config.plugins.lspconfig.javascript")
|
require("config.plugins.lspconfig.javascript")
|
||||||
require("config.plugins.lspconfig.lua")
|
require("config.plugins.lspconfig.lua")
|
||||||
require("config.plugins.lspconfig.ruby")
|
-- require("config.plugins.lspconfig.ruby")
|
||||||
require("config.plugins.lspconfig.rust")
|
|
||||||
end
|
end
|
||||||
|
|||||||
@ -1 +0,0 @@
|
|||||||
require("lspconfig").rust_analyzer.setup({})
|
|
||||||
@ -16,7 +16,10 @@ return {
|
|||||||
{
|
{
|
||||||
"glepnir/dashboard-nvim",
|
"glepnir/dashboard-nvim",
|
||||||
event = "VimEnter",
|
event = "VimEnter",
|
||||||
config = require("config.plugins.dashboard"),
|
config = function()
|
||||||
|
require("dashboard").setup({
|
||||||
|
})
|
||||||
|
end,
|
||||||
dependencies = { { "nvim-tree/nvim-web-devicons" } },
|
dependencies = { { "nvim-tree/nvim-web-devicons" } },
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user