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
|
||||
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
|
||||
|
||||
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.javascript")
|
||||
require("config.plugins.lspconfig.lua")
|
||||
-- require("config.plugins.lspconfig.ruby")
|
||||
require("config.plugins.lspconfig.ruby")
|
||||
require("config.plugins.lspconfig.rust")
|
||||
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",
|
||||
event = "VimEnter",
|
||||
config = function()
|
||||
require("dashboard").setup({
|
||||
})
|
||||
end,
|
||||
config = require("config.plugins.dashboard"),
|
||||
dependencies = { { "nvim-tree/nvim-web-devicons" } },
|
||||
},
|
||||
{
|
||||
|
||||
Loading…
Reference in New Issue
Block a user