From 307486d2a0983d5f2d3f866a0acad43dc8323166 Mon Sep 17 00:00:00 2001 From: Nathan Reiner Date: Fri, 11 Oct 2024 21:52:52 +0200 Subject: try more minimal nvim config --- common/home/programs/nixvim/plugins/cmp.nix | 45 --------------- common/home/programs/nixvim/plugins/dashboard.nix | 68 ----------------------- common/home/programs/nixvim/plugins/default.nix | 5 -- common/home/programs/nixvim/plugins/lsp.nix | 47 ---------------- 4 files changed, 165 deletions(-) delete mode 100644 common/home/programs/nixvim/plugins/cmp.nix delete mode 100644 common/home/programs/nixvim/plugins/dashboard.nix delete mode 100644 common/home/programs/nixvim/plugins/lsp.nix (limited to 'common/home') diff --git a/common/home/programs/nixvim/plugins/cmp.nix b/common/home/programs/nixvim/plugins/cmp.nix deleted file mode 100644 index 27cca04..0000000 --- a/common/home/programs/nixvim/plugins/cmp.nix +++ /dev/null @@ -1,45 +0,0 @@ -{ ... }: -{ - enable = true; - autoEnableSources = true; - settings = { - mapping = { - "" = "cmp.mapping.scroll_docs(-4)"; - "" = "cmp.mapping.scroll_docs(4)"; - "" = "cmp.mapping.complete()"; - "" = "cmp.mapping.abort()"; - "" = "cmp.mapping.confirm({ select = true })"; - "" = '' - cmp.mapping(function(fallback) - if cmp.visible() then - cmp.select_next_item() - else - fallback() - end - end, { "i", "s" }) - ''; - "" = '' - cmp.mapping(function(fallback) - if cmp.visible() then - cmp.select_prev_item() - else - fallback() - end - end, { "i", "s" }) - ''; - }; - snippet = { - expand = '' - function(args) - require('luasnip').lsp_expand(args.body) - end - ''; - }; - sources = [ - { name = "nvim_lsp"; } - { name = "luasnip"; } - { name = "path"; } - { name = "buffer"; } - ]; - }; -} diff --git a/common/home/programs/nixvim/plugins/dashboard.nix b/common/home/programs/nixvim/plugins/dashboard.nix deleted file mode 100644 index 68308da..0000000 --- a/common/home/programs/nixvim/plugins/dashboard.nix +++ /dev/null @@ -1,68 +0,0 @@ -{ ... }: -{ - enable = true; - settings = { - change_to_vcs_root = true; - config = { - footer = [ "" ]; - - header = [ - "███╗ ██╗ ███████╗ ██████╗ ██╗ ██╗ ██╗ ███╗ ███╗" - "████╗ ██║ ██╔════╝██╔═══██╗ ██║ ██║ ██║ ████╗ ████║" - "██╔██╗ ██║ █████╗ ██║ ██║ ██║ ██║ ██║ ██╔████╔██║" - "██║╚██╗██║ ██╔══╝ ██║ ██║ ╚██╗ ██╔╝ ██║ ██║╚██╔╝██║" - "██║ ╚████║ ███████╗╚██████╔╝ ╚████╔╝ ██║ ██║ ╚═╝ ██║" - "╚═╝ ╚═══╝ ╚══════╝ ╚═════╝ ╚═══╝ ╚═╝ ╚═╝ ╚═╝" - ]; - - mru = { - limit = 10; - }; - - project = { - enable = true; - }; - - packages.enable = false; - - shortcut = [ - { - action = { - __raw = '' - function(path) - vim.cmd('Telescope find_files') - end - ''; - }; - desc = "Files"; - group = "Label"; - icon = " "; - icon_hl = "@variable"; - key = "f"; - } - { - action = { - __raw = '' - function() - vim.cmd('cd ~/global/system/config') - vim.cmd('Telescope find_files') - end - ''; - }; - icon = "󱄅 "; - icon_hl = "@variable"; - desc = "System Config"; - group = "Number"; - key = "c"; - } - ]; - - hide = [ - "statusline" - "tabline" - "winbar" - ]; - }; - theme = "hyper"; - }; -} diff --git a/common/home/programs/nixvim/plugins/default.nix b/common/home/programs/nixvim/plugins/default.nix index efe4988..4898ff6 100644 --- a/common/home/programs/nixvim/plugins/default.nix +++ b/common/home/programs/nixvim/plugins/default.nix @@ -2,15 +2,10 @@ let plugins = [ "web-devicons" - "dashboard" "nvim-tree" "telescope" "lualine" "treesitter" - "luasnip" - "friendly-snippets" - "cmp" - "lsp" ]; in builtins.listToAttrs ( diff --git a/common/home/programs/nixvim/plugins/lsp.nix b/common/home/programs/nixvim/plugins/lsp.nix deleted file mode 100644 index b60994e..0000000 --- a/common/home/programs/nixvim/plugins/lsp.nix +++ /dev/null @@ -1,47 +0,0 @@ -{ pkgs, ... }: -{ - enable = true; - servers = { - - bashls = { - enable = true; - package = pkgs.unstable.bash-language-server; - }; - - clangd.enable = true; - - nixd = { - enable = true; - settings.formatting.command = [ "nixfmt" ]; - }; - - rust_analyzer = { - enable = true; - installCargo = true; - installRustc = true; - }; - - pyright.enable = true; - - ocamllsp = { - enable = true; - package = null; - cmd = [ "ocamllsp" ]; - }; - - zls = { - enable = true; - }; - }; - - keymaps.lspBuf = { - "gd" = "definition"; - "gD" = "references"; - "gt" = "type_definition"; - "gi" = "implementation"; - "K" = "hover"; - "rn" = "rename"; - "ca" = "code_action"; - "f" = "format"; - }; -} -- cgit v1.2.3-70-g09d2