From eb7fc248e21940dd7b01a6d244540268194754b7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=88=D0=BE=D0=B2=D0=B0=D0=BD=20=D0=82=D0=BE=D0=BA=D0=B8?= =?UTF-8?q?=D1=9B-=D0=A8=D1=83=D0=BC=D0=B0=D1=80=D0=B0=D1=86?= Date: Sun, 30 Jul 2023 09:07:54 +0200 Subject: [PATCH] Cleaned up a bit --- init.lua | 13 +- lua/bak.lua | 293 ------------------------ lua/{trixy => options}/colors.lua | 0 lua/options/init.lua | 3 + lua/{trixy => options}/keybind.lua | 35 ++- lua/{trixy => options}/opts.lua | 30 ++- lua/plugins/devicons.lua | 42 ++++ lua/{trixy => plugins}/drop.lua | 0 lua/{trixy => plugins}/harpoon.lua | 0 lua/plugins/init.lua | 14 ++ lua/{trixy => plugins}/lazy.lua | 13 +- lua/{trixy => plugins}/lsp-zero.lua | 0 lua/plugins/lualine.lua | 41 ++++ lua/{trixy => plugins}/mini.lua | 0 lua/{trixy => plugins}/neorg.lua | 0 lua/plugins/nomodoro.lua | 26 +++ lua/{trixy => plugins}/smoothcursor.lua | 0 lua/{trixy => plugins}/treesitter.lua | 0 lua/plugins/veil.lua | 56 +++++ lua/trixy/init.lua | 13 -- lua/trixy/marks.lua | 20 -- lua/trixy/staline.lua | 56 ----- vimstall.sh | 2 +- 23 files changed, 267 insertions(+), 390 deletions(-) delete mode 100644 lua/bak.lua rename lua/{trixy => options}/colors.lua (100%) create mode 100644 lua/options/init.lua rename lua/{trixy => options}/keybind.lua (53%) rename lua/{trixy => options}/opts.lua (76%) create mode 100644 lua/plugins/devicons.lua rename lua/{trixy => plugins}/drop.lua (100%) rename lua/{trixy => plugins}/harpoon.lua (100%) create mode 100644 lua/plugins/init.lua rename lua/{trixy => plugins}/lazy.lua (92%) rename lua/{trixy => plugins}/lsp-zero.lua (100%) create mode 100644 lua/plugins/lualine.lua rename lua/{trixy => plugins}/mini.lua (100%) rename lua/{trixy => plugins}/neorg.lua (100%) create mode 100644 lua/plugins/nomodoro.lua rename lua/{trixy => plugins}/smoothcursor.lua (100%) rename lua/{trixy => plugins}/treesitter.lua (100%) create mode 100644 lua/plugins/veil.lua delete mode 100644 lua/trixy/init.lua delete mode 100644 lua/trixy/marks.lua delete mode 100644 lua/trixy/staline.lua diff --git a/init.lua b/init.lua index 006beb7..6c5a4d1 100644 --- a/init.lua +++ b/init.lua @@ -1,2 +1,13 @@ -require("trixy") + +-- ████████╗██████╗ ██╗██╗ ██╗██╗ ██╗ +-- ╚══██╔══╝██╔══██╗██║╚██╗██╔╝╚██╗ ██╔╝ +-- ██║ ██████╔╝██║ ╚███╔╝ ╚████╔╝ +-- ██║ ██╔══██╗██║ ██╔██╗ ╚██╔╝ +-- ██║ ██║ ██║██║██╔╝ ██╗ ██║ +-- ╚═╝ ╚═╝ ╚═╝╚═╝╚═╝ ╚═╝ ╚═╝ + + + +require("plugins") +require("options") diff --git a/lua/bak.lua b/lua/bak.lua deleted file mode 100644 index d763553..0000000 --- a/lua/bak.lua +++ /dev/null @@ -1,293 +0,0 @@ --- --- | | | /\ --- |___ \__/ /~~\ - - - --- LAZY NVIM - - -local lazypath = vim.fn.stdpath("data") .. "/lazy/lazy.nvim" -if not vim.loop.fs_stat(lazypath) then - vim.fn.system({ - "git", - "clone", - "--filter=blob:none", - "https://github.com/folke/lazy.nvim.git", - "--branch=stable", -- latest stable release - lazypath, - }) -end -vim.opt.rtp:prepend(lazypath) - - --- require("lazy").setup(plugins, opts) - - - - - -require("lazy").setup({ - - "navarasu/onedark.nvim", - "HiPhish/nvim-ts-rainbow2", - "NvChad/nvim-colorizer.lua", - "gen740/SmoothCursor.nvim", - "folke/twilight.nvim", - "folke/zen-mode.nvim", - "MunifTanjim/nui.nvim", - "nvim-tree/nvim-web-devicons", - "tamton-aquib/staline.nvim", - - "kassio/neoterm", - "willothy/veil.nvim", - - "bkad/camelcasemotion", - "ggandor/lightspeed.nvim", - "chentoast/marks.nvim", - - "tpope/vim-commentary", - - "preservim/nerdtree", - - { - "m4xshen/hardtime.nvim", - opts = {} - }, - - { - "folke/noice.nvim", - config = true, - }, - - { - "willothy/veil.nvim", - dependencies = { - "nvim-telescope/telescope.nvim", - "nvim-lua/plenary.nvim", - "nvim-telescope/telescope-file-browser.nvim" - }, - config = true, - }, - - - -- size does not matter - { - 'echasnovski/mini.nvim', - version = false - }, - - - -- need that syntax highlight amirite - { - "nvim-treesitter/nvim-treesitter", - build = ":TSUpdate" - }, - - - -- the name says it all - { - "SirVer/ultisnips", - lazy = true - }, - - -- That shmexy latex plugin - { - "lervag/vimtex", - lazy = true - }, - - -- DAMN, org mode? - { - "nvim-neorg/neorg", - lazy = true - }, - - - -- Cool screensaver !! - { - "folke/drop.nvim", - event = "VimEnter", - - config = function() - require('drop').setup - { - ---@type DropTheme|string - theme = "leaves", -- can be one of rhe default themes, or a custom theme - max = 15, -- maximum number of drops on the screen - interval = 100, -- every 150ms we update the drops - screensaver = 1000 * 60 * 1, -- show after 5 minutes. Set to false, to disable - filetypes = { "veil" }, -- will enable/disable automatically for the following filetypes - } - end, - }, - -}) - - - - - -require('colorizer').setup() -require('mini.completion').setup() -require('mini.cursorword').setup() -require('mini.pairs').setup() -require('mini.trailspace').setup() -require('mini.hipatterns').setup() -require('mini.indentscope').setup() --- require('mason').setup() --- require('mini.files').setup() --- require('mini.statusline').setup() --- require('mini.starter').setup() - -vim.opt.laststatus=2 - -vim.keymap.set('i', '', [[pumvisible() ? "\" : "\"]], { expr = true }) -vim.keymap.set('i', '', [[pumvisible() ? "\" : "\"]], { expr = true }) - - - ---require('nvim-treesitter.configs').setup { --- rainbow = { --- enable = true, --- -- Which query to use for finding delimiters --- query = 'rainbow-parens', --- -- Highlight the entire buffer all at once --- strategy = require('ts-rainbow').strategy.global, --- } ---} - - - - - - - -require('neorg').setup { - load = { - ["core.defaults"] = {}, -- Loads default behaviour - ["core.concealer"] = {}, -- Adds pretty icons to your documents - ["core.dirman"] = { -- Manages Neorg workspaces - config = { - workspaces = { - notes = "~/notes", - }, - }, - }, - }, -} - - - - - - - -require('smoothcursor').setup({ - autostart = true, - cursor = "", -- cursor shape (need nerd font) - texthl = "SmoothCursor", -- highlight group, default is { bg = nil, fg = "#FFD400" } - linehl = nil, -- highlight sub-cursor line like 'cursorline', "CursorLine" recommended - type = "default", -- define cursor movement calculate function, "default" or "exp" (exponential). - fancy = { - enable = true, -- enable fancy mode - head = { cursor = "", texthl = "SmoothCursor", linehl = nil }, - body = { - { cursor = "", texthl = "SmoothCursorYellow" }, - { cursor = "", texthl = "SmoothCursorYellow" }, - { cursor = "●", texthl = "SmoothCursorYellow" }, - { cursor = "●", texthl = "SmoothCursorYellow" }, - { cursor = "•", texthl = "SmoothCursorYellow" }, - { cursor = ".", texthl = "SmoothCursorYellow" }, - { cursor = ".", texthl = "SmoothCursorYellow" }, - }, - tail = { cursor = nil, texthl = "SmoothCursor" } - }, - flyin_effect = nil, -- "bottom" or "top" - speed = 50, -- max is 100 to stick to your current position - intervals = 25, -- tick interval - priority = 10, -- set marker priority - timeout = 1500, -- timout for animation - threshold = 3, -- animate if threshold lines jump - disable_float_win = false, -- disable on float window - enabled_filetypes = nil, -- example: { "lua", "vim" } - disabled_filetypes = nil, -- this option will be skipped if enabled_filetypes is set. example: { "TelescopePrompt", "NvimTree" } -}) - - - -require('staline').setup { - defaults = { - expand_null_ls = false, -- This expands out all the null-ls sources to be shown - left_separator = "", - right_separator = "", - full_path = false, - line_column = "[%l/%L] 並%p%% ", -- `:h stl` to see all flags. - - fg = "#000000", -- Foreground text color. - bg = "none", -- Default background is transparent. - inactive_color = "#303030", - inactive_bgcolor = "none", - true_colors = true, -- true lsp colors. - font_active = "none", -- "bold", "italic", "bold,italic", etc - - mod_symbol = "  ", - lsp_client_symbol = " ", - lsp_client_character_length = 12, -- Shorten LSP client names. - branch_symbol = " ", - cool_symbol = " ", -- Change this to override default OS icon. - null_ls_symbol = "", -- A symbol to indicate that a source is coming from null-ls - }, - mode_colors = { - n = "#4799eb", - i = "#986fec", - c = "#e27d60", - v = "#2bbb4f", -- etc.. - }, - mode_icons = { - n = " Normal", - i = " Insert", - c = " Command", - v = " Visual", -- etc.. - }, - sections = { - left = { '- ', '-mode', 'left_sep_double', ' ', 'branch' }, - mid = { 'file_name' }, - right = { 'cool_symbol','right_sep_double', '-line_column' }, - }, - inactive_sections = { - left = { 'branch' }, - mid = { 'file_name' }, - right = { 'line_column' } - }, - lsp_symbols = { - Error=" ", - Info=" ", - Warn=" ", - Hint="", - }, -} - - - - -require'marks'.setup { - default_mappings = true, - builtin_marks = { ".", "<", ">", "^" }, - cyclic = true, - force_write_shada = false, - refresh_interval = 250, - sign_priority = { lower=10, upper=15, builtin=8, bookmark=20 }, - excluded_filetypes = {}, - bookmark_0 = { - sign = "⚑", - virt_text = "hello world", - -- defaults to false. - annotate = false, - }, - mappings = {} -} - - - - diff --git a/lua/trixy/colors.lua b/lua/options/colors.lua similarity index 100% rename from lua/trixy/colors.lua rename to lua/options/colors.lua diff --git a/lua/options/init.lua b/lua/options/init.lua new file mode 100644 index 0000000..cf26c53 --- /dev/null +++ b/lua/options/init.lua @@ -0,0 +1,3 @@ +require("options.colors") +require("options.opts") +require("options.keybind") diff --git a/lua/trixy/keybind.lua b/lua/options/keybind.lua similarity index 53% rename from lua/trixy/keybind.lua rename to lua/options/keybind.lua index c422982..03bd070 100644 --- a/lua/trixy/keybind.lua +++ b/lua/options/keybind.lua @@ -18,7 +18,7 @@ cmap("n", "fg", tele.git_files, options) cmap("n", "fg", tele.git_files, options) cmap("n", "fs", function() - tele.grep_string({ search = vim.fn.input("Grep > ") }); + tele.grep_string({ search = vim.fn.input("Grep > ") }); end) @@ -28,11 +28,8 @@ map("n", "tw", "lua MiniTrailspace.trim()", options) map("n", "fm", "NERDTree", options) map("n", "fc", "NERDTreeClose", options) map("n", "tt", "12 split Tnew", options) -map("n", "sc", "TSEnable highlight", options) map("n", "zt", "Twilight", options) map("n", "zz", "ZenMode", options) -map("n", "v", "vsplit ~/.config/nvim/init.lua", options) -map("n", "V", "source ~/.config/nvim/init.lua", options) @@ -41,4 +38,34 @@ map("n", "b", "CamelCaseMotion_b", cmd_options) map("n", "e", "CamelCaseMotion_e", cmd_options) map("n", "ge", "CamelCaseMotion_ge", cmd_options) +map("n", "v", "Veil", options) +map("n", "p", "NomoMenu", options) + + + +map("v", "J", ":m '>+1gv=gv", options) +map("v", "K", ":m '<-2gv=gv", options) + +map("n", "J", "mzJ`z", options) +map("n", "", "zz", options) +map("n", "", "zz", options) +map("n", "n", "nzzzv", options) +map("n", "N", "Nzzzv", options) + + +-- greatest remap ever +cmap("x", "p", [["_dP]]) + +cmap({ "n", "v" }, "d", [["_d]]) + + +map("n", "", "cnextzz", options) +map("n", "", "cprevzz", options) +map("n", "k", "lnextzz", options) +map("n", "j", "lprevzz", options) + +cmap("n", "s", [[:%s/\<\>//gI]]) + +map("n", "mr", "CellularAutomaton make_it_rain", options) + diff --git a/lua/trixy/opts.lua b/lua/options/opts.lua similarity index 76% rename from lua/trixy/opts.lua rename to lua/options/opts.lua index 7afa5f2..3cf8ad4 100644 --- a/lua/trixy/opts.lua +++ b/lua/options/opts.lua @@ -34,10 +34,38 @@ o.cursorline = true o.splitbelow = true o.autochdir = true o.signcolumn="yes:1" - +o.shell = "/bin/dash" vim.api.nvim_command("filetype off") vim.api.nvim_command("let &runtimepath.=',~/.vim/bundle/neoterm'") vim.api.nvim_command("filetype plugin on") vim.api.nvim_command("filetype plugin indent on") vim.api.nvim_command("syntax on") + + + + +local disabled_built_ins = { + "netrw", + "netrwPlugin", + "netrwSettings", + "netrwFileHandlers", + "gzip", + "zip", + "zipPlugin", + "tar", + "tarPlugin", + "getscript", + "getscriptPlugin", + "vimball", + "vimballPlugin", + "2html_plugin", + "logipat", + "rrhelper", + "spellfile_plugin", + "matchit" +} + +for _, plugin in pairs(disabled_built_ins) do + vim.g["loaded_" .. plugin] = 1 +end diff --git a/lua/plugins/devicons.lua b/lua/plugins/devicons.lua new file mode 100644 index 0000000..f0673ed --- /dev/null +++ b/lua/plugins/devicons.lua @@ -0,0 +1,42 @@ +require'nvim-web-devicons'.setup { + -- your personnal icons can go here (to override) + -- you can specify color or cterm_color instead of specifying both of them + -- DevIcon will be appended to `name` + override = { + zsh = { + icon = "", + color = "#428850", + cterm_color = "65", + name = "Zsh" + } + }; + -- globally enable different highlight colors per icon (default to true) + -- if set to false all icons will have the default icon's color + color_icons = true; + -- globally enable default icons (default to false) + -- will get overriden by `get_icons` option + default = true; + -- globally enable "strict" selection of icons - icon will be looked up in + -- different tables, first by filename, and if not found by extension; this + -- prevents cases when file doesn't have any extension but still gets some icon + -- because its name happened to match some extension (default to false) + strict = true; + -- same as `override` but specifically for overrides by filename + -- takes effect when `strict` is true + override_by_filename = { + [".gitignore"] = { + icon = "", + color = "#f1502f", + name = "Gitignore" + } + }; + -- same as `override` but specifically for overrides by extension + -- takes effect when `strict` is true + override_by_extension = { + ["log"] = { + icon = "", + color = "#81e043", + name = "Log" + } + }; +} diff --git a/lua/trixy/drop.lua b/lua/plugins/drop.lua similarity index 100% rename from lua/trixy/drop.lua rename to lua/plugins/drop.lua diff --git a/lua/trixy/harpoon.lua b/lua/plugins/harpoon.lua similarity index 100% rename from lua/trixy/harpoon.lua rename to lua/plugins/harpoon.lua diff --git a/lua/plugins/init.lua b/lua/plugins/init.lua new file mode 100644 index 0000000..af2f3f6 --- /dev/null +++ b/lua/plugins/init.lua @@ -0,0 +1,14 @@ +require("plugins.lazy") + +require("plugins.neorg") +require("plugins.smoothcursor") +require("plugins.treesitter") +require("plugins.harpoon") +require("plugins.drop") +require("plugins.mini") +require("plugins.lsp-zero") +require("plugins.nomodoro") +require("plugins.devicons") +require("plugins.lualine") +require("plugins.veil") + diff --git a/lua/trixy/lazy.lua b/lua/plugins/lazy.lua similarity index 92% rename from lua/trixy/lazy.lua rename to lua/plugins/lazy.lua index 57c72ef..4158100 100644 --- a/lua/trixy/lazy.lua +++ b/lua/plugins/lazy.lua @@ -41,6 +41,18 @@ require("lazy").setup({ "preservim/nerdtree", "ThePrimeagen/harpoon", + "eandrju/cellular-automaton.nvim", + "dbinagi/nomodoro", + + + { + "nvim-lualine/lualine.nvim", + dependencies = + { + "nvim-tree/nvim-web-devicons", + opt = true + } + }, { @@ -71,7 +83,6 @@ require("lazy").setup({ "nvim-lua/plenary.nvim", "nvim-telescope/telescope-file-browser.nvim" }, - config = true, }, diff --git a/lua/trixy/lsp-zero.lua b/lua/plugins/lsp-zero.lua similarity index 100% rename from lua/trixy/lsp-zero.lua rename to lua/plugins/lsp-zero.lua diff --git a/lua/plugins/lualine.lua b/lua/plugins/lualine.lua new file mode 100644 index 0000000..512e57f --- /dev/null +++ b/lua/plugins/lualine.lua @@ -0,0 +1,41 @@ +require('lualine').setup { + options = { + icons_enabled = true, + theme = 'onedark', + component_separators = { left = '', right = ''}, + section_separators = { left = '', right = ''}, + disabled_filetypes = { + statusline = {}, + winbar = {}, + }, + ignore_focus = {}, + always_divide_middle = true, + globalstatus = false, + refresh = { + statusline = 1000, + tabline = 1000, + winbar = 1000, + } + }, + sections = { + lualine_a = {'mode'}, + lualine_b = {'branch', 'diff', 'diagnostics'}, + lualine_c = {'filename'}, + lualine_x = { require("nomodoro").status }, + lualine_y = {'progress'}, + lualine_z = {'location'} + }, + inactive_sections = { + lualine_a = {}, + lualine_b = {}, + lualine_c = {'filename'}, + lualine_x = {'location'}, + lualine_y = {}, + lualine_z = {} + }, + tabline = {}, + winbar = {}, + inactive_winbar = {}, + extensions = {} +} + diff --git a/lua/trixy/mini.lua b/lua/plugins/mini.lua similarity index 100% rename from lua/trixy/mini.lua rename to lua/plugins/mini.lua diff --git a/lua/trixy/neorg.lua b/lua/plugins/neorg.lua similarity index 100% rename from lua/trixy/neorg.lua rename to lua/plugins/neorg.lua diff --git a/lua/plugins/nomodoro.lua b/lua/plugins/nomodoro.lua new file mode 100644 index 0000000..8824686 --- /dev/null +++ b/lua/plugins/nomodoro.lua @@ -0,0 +1,26 @@ +require('nomodoro').setup({ + work_time = 1, + break_time = 1, + menu_available = true, + texts = { + on_break_complete = "BREAK IS UP!", + on_work_complete = "TIME IS UP!", + status_icon = "羽", + timer_format = '!%0M:%0S' -- To include hours: '!%0H:%0M:%0S' + }, + on_work_complete = function() + vim.cmd('CellularAutomaton make_it_rain') + end, + on_break_complete = function() + vim.cmd('Veil') + end +}) + + +require('lualine').setup({ + sections = { + lualine_x = { + require('nomodoro').status, + } + } +}) diff --git a/lua/trixy/smoothcursor.lua b/lua/plugins/smoothcursor.lua similarity index 100% rename from lua/trixy/smoothcursor.lua rename to lua/plugins/smoothcursor.lua diff --git a/lua/trixy/treesitter.lua b/lua/plugins/treesitter.lua similarity index 100% rename from lua/trixy/treesitter.lua rename to lua/plugins/treesitter.lua diff --git a/lua/plugins/veil.lua b/lua/plugins/veil.lua new file mode 100644 index 0000000..a519eb3 --- /dev/null +++ b/lua/plugins/veil.lua @@ -0,0 +1,56 @@ +local current_day = os.date("%A") + +local builtin = require("veil.builtin") + + + +require("veil").setup({ + sections = { + builtin.sections.animated(builtin.headers.frames_days_of_week[current_day], { + hl = { fg = "#5de4c7" }, + }), + builtin.sections.buttons({ + { + icon = "", + text = "Find Files", + shortcut = "f", + callback = function() + require("telescope.builtin").find_files() + end, + }, + { + icon = "", + text = "Find Word", + shortcut = "w", + callback = function() + require("telescope.builtin").live_grep() + end, + }, + { + icon = "", + text = "Buffers", + shortcut = "b", + callback = function() + require("telescope.builtin").buffers() + end, + }, + { + icon = "", + text = "Config", + shortcut = "c", + callback = function() + require("telescope").extensions.file_browser.file_browser({ + path = vim.fn.stdpath("config"), + }) + end, + }, + }), + builtin.sections.oldfiles(), + }, + mappings = {}, + startup = true, + listed = false +}) + + + diff --git a/lua/trixy/init.lua b/lua/trixy/init.lua deleted file mode 100644 index e1118fc..0000000 --- a/lua/trixy/init.lua +++ /dev/null @@ -1,13 +0,0 @@ -require("trixy.lazy") -require("trixy.neorg") -require("trixy.smoothcursor") -require("trixy.staline") -require("trixy.opts") -require("trixy.colors") -require("trixy.keybind") -require("trixy.treesitter") -require("trixy.harpoon") -require("trixy.drop") -require("trixy.mini") -require("trixy.lsp-zero") ---require("trixy.marks") diff --git a/lua/trixy/marks.lua b/lua/trixy/marks.lua deleted file mode 100644 index eae332d..0000000 --- a/lua/trixy/marks.lua +++ /dev/null @@ -1,20 +0,0 @@ - - -require'marks'.setup { - default_mappings = true, - builtin_marks = { ".", "<", ">", "^" }, - cyclic = true, - force_write_shada = false, - refresh_interval = 250, - sign_priority = { lower=10, upper=15, builtin=8, bookmark=20 }, - excluded_filetypes = {}, - bookmark_0 = { - sign = "⚑", - virt_text = "hello world", - -- defaults to false. - annotate = false, - }, - mappings = {} -} - - diff --git a/lua/trixy/staline.lua b/lua/trixy/staline.lua deleted file mode 100644 index 19a58f4..0000000 --- a/lua/trixy/staline.lua +++ /dev/null @@ -1,56 +0,0 @@ - - -require('staline').setup { - defaults = { - expand_null_ls = false, -- This expands out all the null-ls sources to be shown - left_separator = "", - right_separator = "", - full_path = false, - line_column = "[%l/%L] 並%p%% ", -- `:h stl` to see all flags. - - fg = "#000000", -- Foreground text color. - bg = "none", -- Default background is transparent. - inactive_color = "#303030", - inactive_bgcolor = "none", - true_colors = true, -- true lsp colors. - font_active = "none", -- "bold", "italic", "bold,italic", etc - - mod_symbol = "  ", - lsp_client_symbol = " ", - lsp_client_character_length = 12, -- Shorten LSP client names. - branch_symbol = " ", - cool_symbol = " ", -- Change this to override default OS icon. - null_ls_symbol = "", -- A symbol to indicate that a source is coming from null-ls - }, - mode_colors = { - n = "#4799eb", - i = "#986fec", - c = "#e27d60", - v = "#2bbb4f", -- etc.. - }, - mode_icons = { - n = " Normal", - i = " Insert", - c = " Command", - v = " Visual", -- etc.. - }, - sections = { - left = { '- ', '-mode', 'left_sep_double', ' ', 'branch' }, - mid = { 'file_name' }, - right = { 'cool_symbol','right_sep_double', '-line_column' }, - }, - inactive_sections = { - left = { 'branch' }, - mid = { 'file_name' }, - right = { 'line_column' } - }, - lsp_symbols = { - Error=" ", - Info=" ", - Warn=" ", - Hint="", - }, -} - - - diff --git a/vimstall.sh b/vimstall.sh index e4e5889..6495440 100755 --- a/vimstall.sh +++ b/vimstall.sh @@ -2,4 +2,4 @@ # INSTALL CONFIG -nvim +"Lazy sync" +"TSInstall c haskell bash go python" #+"MasonInstall bash-language-server clangd gopls texlab" +nvim +"Lazy sync"