summaryrefslogtreecommitdiff
path: root/.config/nvim/lua/getchoo
diff options
context:
space:
mode:
Diffstat (limited to '.config/nvim/lua/getchoo')
-rw-r--r--.config/nvim/lua/getchoo/config.lua25
-rw-r--r--.config/nvim/lua/getchoo/plugins.lua5
2 files changed, 2 insertions, 28 deletions
diff --git a/.config/nvim/lua/getchoo/config.lua b/.config/nvim/lua/getchoo/config.lua
index 529dade..150ebcb 100644
--- a/.config/nvim/lua/getchoo/config.lua
+++ b/.config/nvim/lua/getchoo/config.lua
@@ -12,31 +12,6 @@ M.bufferline = {
semantic_letters = true,
}
-local db = require("dashboard")
-db.custom_center = {
- {
- desc = "find a file",
- action = "Telescope fd",
- },
- {
- desc = "update plugins",
- action = "PackerSync",
- },
- {
- desc = "update treesitter parsers",
- actions = "TSUpdate",
- },
-}
-
-db.custom_header = {
- " ███╗ ██╗ ███████╗ ██████╗ ██╗ ██╗ ██╗ ███╗ ███╗",
- " ████╗ ██║ ██╔════╝██╔═══██╗ ██║ ██║ ██║ ████╗ ████║",
- " ██╔██╗ ██║ █████╗ ██║ ██║ ██║ ██║ ██║ ██╔████╔██║",
- " ██║╚██╗██║ ██╔══╝ ██║ ██║ ╚██╗ ██╔╝ ██║ ██║╚██╔╝██║",
- " ██║ ╚████║ ███████╗╚██████╔╝ ╚████╔╝ ██║ ██║ ╚═╝ ██║",
- " ╚═╝ ╚═══╝ ╚══════╝ ╚═════╝ ╚═══╝ ╚═╝ ╚═╝ ╚═╝",
-}
-
M.lualine = {
options = {
theme = "nord",
diff --git a/.config/nvim/lua/getchoo/plugins.lua b/.config/nvim/lua/getchoo/plugins.lua
index 35df46f..fbf42a9 100644
--- a/.config/nvim/lua/getchoo/plugins.lua
+++ b/.config/nvim/lua/getchoo/plugins.lua
@@ -23,14 +23,12 @@ require("packer").startup(function(use)
use("wbthomason/packer.nvim")
-- comsetic plugins
- use({ "nvim-lualine/lualine.nvim", requires = { "kyazdani42/nvim-web-devicons", opt = true } })
+ use({ "nvim-lualine/lualine.nvim", requires = { "kyazdani42/nvim-web-devicons" } })
use("shaunsingh/nord.nvim")
use({ "rose-pine/neovim", as = "rose-pine" })
- use("glepnir/dashboard-nvim")
-
-- general use plugins
use({
"romgrk/barbar.nvim",
@@ -81,6 +79,7 @@ require("packer").startup(function(use)
})
use("lewis6991/gitsigns.nvim")
+ use("editorconfig/editorconfig-vim")
end
if Packer_bootstrap then