mirror of
https://github.com/danbee/dotfiles-local
synced 2025-03-04 08:49:07 +00:00
Compare commits
13 Commits
df8050683c
...
4949356449
| Author | SHA1 | Date | |
|---|---|---|---|
| 4949356449 | |||
|
|
832bd0e94e | ||
|
|
e96dec97ab | ||
|
|
7d536ba184 | ||
| 9fb4f8a6bb | |||
|
|
fb3b28b777 | ||
|
|
da69a9eba7 | ||
|
|
1d10668cd6 | ||
|
|
7e3a2cf5e9 | ||
|
|
d9a16ecf09 | ||
|
|
8ccc95f84e | ||
|
|
eb8d759915 | ||
| 60809d53f3 |
@ -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
|
||||||
|
|||||||
15
config/nvim/lua/config/plugins/dashboard.lua
Normal file
15
config/nvim/lua/config/plugins/dashboard.lua
Normal file
@ -0,0 +1,15 @@
|
|||||||
|
return function()
|
||||||
|
require("dashboard").setup({
|
||||||
|
theme = "hyper",
|
||||||
|
config = {
|
||||||
|
header = {
|
||||||
|
[[ ███╗ ██╗ ███████╗ ██████╗ ██╗ ██╗ ██╗ ███╗ ███╗]],
|
||||||
|
[[ ████╗ ██║ ██╔════╝██╔═══██╗ ██║ ██║ ██║ ████╗ ████║]],
|
||||||
|
[[ ██╔██╗ ██║ █████╗ ██║ ██║ ██║ ██║ ██║ ██╔████╔██║]],
|
||||||
|
[[ ██║╚██╗██║ ██╔══╝ ██║ ██║ ╚██╗ ██╔╝ ██║ ██║╚██╔╝██║]],
|
||||||
|
[[ ██║ ╚████║ ███████╗╚██████╔╝ ╚████╔╝ ██║ ██║ ╚═╝ ██║]],
|
||||||
|
[[ ╚═╝ ╚═══╝ ╚══════╝ ╚═════╝ ╚═══╝ ╚═╝ ╚═╝ ╚═╝]],
|
||||||
|
}
|
||||||
|
}
|
||||||
|
})
|
||||||
|
end
|
||||||
@ -3,5 +3,6 @@ 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
config/nvim/lua/config/plugins/lspconfig/rust.lua
Normal file
1
config/nvim/lua/config/plugins/lspconfig/rust.lua
Normal file
@ -0,0 +1 @@
|
|||||||
|
require("lspconfig").rust_analyzer.setup({})
|
||||||
@ -16,10 +16,7 @@ return {
|
|||||||
{
|
{
|
||||||
"glepnir/dashboard-nvim",
|
"glepnir/dashboard-nvim",
|
||||||
event = "VimEnter",
|
event = "VimEnter",
|
||||||
config = function()
|
config = require("config.plugins.dashboard"),
|
||||||
require("dashboard").setup({
|
|
||||||
})
|
|
||||||
end,
|
|
||||||
dependencies = { { "nvim-tree/nvim-web-devicons" } },
|
dependencies = { { "nvim-tree/nvim-web-devicons" } },
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user