diff options
| author | seth <[email protected]> | 2022-09-01 08:51:22 -0400 |
|---|---|---|
| committer | seth <[email protected]> | 2022-09-01 09:46:08 -0400 |
| commit | a3f264ae81ea7596f72b7d06fe577ff2dee2dd91 (patch) | |
| tree | cf1ee9b6108aa5d9413dc22583df1196c50a0010 /.config/nvim/lua/getchoo/lsp/config/init.lua | |
| parent | 59b844443f5a5c867a98f8b89dce5b9c6ce3783f (diff) | |
separate neovim plugin configs more
Diffstat (limited to '.config/nvim/lua/getchoo/lsp/config/init.lua')
| -rw-r--r-- | .config/nvim/lua/getchoo/lsp/config/init.lua | 35 |
1 files changed, 0 insertions, 35 deletions
diff --git a/.config/nvim/lua/getchoo/lsp/config/init.lua b/.config/nvim/lua/getchoo/lsp/config/init.lua index 7cb2cbb..be6c357 100644 --- a/.config/nvim/lua/getchoo/lsp/config/init.lua +++ b/.config/nvim/lua/getchoo/lsp/config/init.lua @@ -6,39 +6,6 @@ local null_ls = require("getchoo.lsp.config.null_ls") local M = {} -M.bufferline = { - animation = true, - auto_hide = true, - icons = true, - maximum_padding = 2, - 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.cmp = cmp.config M.lsp_servers = lsp_config.servers @@ -48,8 +15,6 @@ M.mason_lspconfig = mason.mason_lspconfig M.null_ls = null_ls.config -M.tree = {} - M.treesitter = { auto_install = true, highlight = { |
