فهرست منبع

Initial neovim in nix

Thomas Dy 3 سال پیش
والد
کامیت
cd38c8f924
4فایلهای تغییر یافته به همراه399 افزوده شده و 0 حذف شده
  1. 25 0
      .config/nixpkgs/neovim/flake.lock
  2. 72 0
      .config/nixpkgs/neovim/flake.nix
  3. 170 0
      .config/nixpkgs/neovim/init.lua
  4. 132 0
      .config/nixpkgs/neovim/vimrc

+ 25 - 0
.config/nixpkgs/neovim/flake.lock

@@ -0,0 +1,25 @@
+{
+  "nodes": {
+    "nixpkgs": {
+      "locked": {
+        "lastModified": 1647350163,
+        "narHash": "sha256-OcMI+PFEHTONthXuEQNddt16Ml7qGvanL3x8QOl2Aao=",
+        "owner": "NixOS",
+        "repo": "nixpkgs",
+        "rev": "3eb07eeafb52bcbf02ce800f032f18d666a9498d",
+        "type": "github"
+      },
+      "original": {
+        "id": "nixpkgs",
+        "type": "indirect"
+      }
+    },
+    "root": {
+      "inputs": {
+        "nixpkgs": "nixpkgs"
+      }
+    }
+  },
+  "root": "root",
+  "version": 7
+}

+ 72 - 0
.config/nixpkgs/neovim/flake.nix

@@ -0,0 +1,72 @@
+{
+  description = "Neovim configuration";
+
+  outputs = { self, nixpkgs }: {
+
+    packages.x86_64-linux.default =
+      with nixpkgs.legacyPackages.x86_64-linux;
+      let
+        seti-vim = vimUtils.buildVimPlugin {
+          pname = "seti.vim";
+          version = "1.0.0";
+          src = fetchFromGitHub {
+            owner = "trusktr";
+            repo = "seti.vim";
+            rev = "a4781817e75a627b54403a92683516aee6230091";
+            sha256 = "sha256-3XIEKC0fs9v2a73qcbWA+b9gvCbCaHwGs0uoAn9mprg=";
+          };
+        };
+
+        extraPath = [
+          fzf
+          nodePackages.typescript-language-server
+          nodePackages.eslint_d
+        ];
+      in
+      neovim.override {
+        extraMakeWrapperArgs = "--prefix PATH : ${lib.makeBinPath extraPath}";
+        configure = {
+          customRC = ''
+            source ${./vimrc}
+            source ${./init.lua}
+          '';
+          packages.myVimPackage = with vimPlugins; {
+            start = [
+              vim-sensible
+              vim-sleuth
+              vim-fugitive
+              vim-surround
+              vim-abolish
+              vim-signify
+              undotree
+              vim-merginal
+              fzf-vim
+              lightline-vim
+              seti-vim
+
+              (nvim-treesitter.withPlugins (p: with p; [
+                tree-sitter-css
+                tree-sitter-go
+                tree-sitter-javascript
+                tree-sitter-json
+                tree-sitter-lua
+                tree-sitter-nix
+                tree-sitter-ruby
+                tree-sitter-tsx
+                tree-sitter-typescript
+              ]))
+
+              nvim-lspconfig
+              cmp-nvim-lsp
+              cmp-buffer
+              nvim-cmp
+              cmp-vsnip
+              vim-vsnip
+              nvim-lsp-ts-utils
+              null-ls-nvim
+            ];
+          };
+        };
+      };
+  };
+}

+ 170 - 0
.config/nixpkgs/neovim/init.lua

@@ -0,0 +1,170 @@
+require('nvim-treesitter.configs').setup {
+  highlight = {
+    enable = true,
+  },
+}
+
+local orig_util_open_floating_preview = vim.lsp.util.open_floating_preview
+function vim.lsp.util.open_floating_preview(contents, syntax, opts, ...)
+  opts = opts or {}
+  opts.border = opts.border or 'single'
+  return orig_util_open_floating_preview(contents, syntax, opts, ...)
+end
+
+vim.diagnostic.config({
+  virtual_text = { severity = { min = vim.diagnostic.severity.WARN } }
+})
+
+local opts = { noremap=true, silent=true }
+vim.api.nvim_set_keymap('n', '<space>e', '<cmd>lua vim.diagnostic.open_float()<CR>', opts)
+vim.api.nvim_set_keymap('n', '[d', '<cmd>lua vim.diagnostic.goto_prev()<CR>', opts)
+vim.api.nvim_set_keymap('n', ']d', '<cmd>lua vim.diagnostic.goto_next()<CR>', opts)
+vim.api.nvim_set_keymap('n', '<space>q', '<cmd>lua vim.diagnostic.setqflist({ severity = { min = vim.diagnostic.severity.WARN } })<CR>', opts)
+
+function on_attach(client, bufnr)
+  -- Enable completion triggered by <c-x><c-o>
+  vim.api.nvim_buf_set_option(bufnr, 'omnifunc', 'v:lua.vim.lsp.omnifunc')
+
+  -- Mappings.
+  -- See `:help vim.lsp.*` for documentation on any of the below functions
+  vim.api.nvim_buf_set_keymap(bufnr, 'n', 'gD', '<cmd>lua vim.lsp.buf.declaration()<CR>', opts)
+  vim.api.nvim_buf_set_keymap(bufnr, 'n', 'gd', '<cmd>lua vim.lsp.buf.definition()<CR>', opts)
+  vim.api.nvim_buf_set_keymap(bufnr, 'n', 'K', '<cmd>lua vim.lsp.buf.hover()<CR>', opts)
+  vim.api.nvim_buf_set_keymap(bufnr, 'n', 'gi', '<cmd>lua vim.lsp.buf.implementation()<CR>', opts)
+  vim.api.nvim_buf_set_keymap(bufnr, 'n', '<C-k>', '<cmd>lua vim.lsp.buf.signature_help()<CR>', opts)
+  vim.api.nvim_buf_set_keymap(bufnr, 'n', '<space>wa', '<cmd>lua vim.lsp.buf.add_workspace_folder()<CR>', opts)
+  vim.api.nvim_buf_set_keymap(bufnr, 'n', '<space>wr', '<cmd>lua vim.lsp.buf.remove_workspace_folder()<CR>', opts)
+  vim.api.nvim_buf_set_keymap(bufnr, 'n', '<space>wl', '<cmd>lua print(vim.inspect(vim.lsp.buf.list_workspace_folders()))<CR>', opts)
+  vim.api.nvim_buf_set_keymap(bufnr, 'n', '<space>D', '<cmd>lua vim.lsp.buf.type_definition()<CR>', opts)
+  vim.api.nvim_buf_set_keymap(bufnr, 'n', '<space>rn', '<cmd>lua vim.lsp.buf.rename()<CR>', opts)
+  vim.api.nvim_buf_set_keymap(bufnr, 'n', '<space>ca', '<cmd>lua vim.lsp.buf.code_action()<CR>', opts)
+  vim.api.nvim_buf_set_keymap(bufnr, 'n', 'gr', '<cmd>lua vim.lsp.buf.references()<CR>', opts)
+  vim.api.nvim_buf_set_keymap(bufnr, 'n', '<space>f', '<cmd>lua vim.lsp.buf.formatting()<CR>', opts)
+end
+
+require'nvim-treesitter.configs'.setup {
+  highlight = {
+    enable = true,
+  },
+}
+
+local nvim_lsp = require('lspconfig')
+local null_ls = require('null-ls')
+
+local null_ls_sources = {}
+
+if vim.fn.executable("node_modules/.bin/eslint") then
+  table.insert(null_ls_sources, null_ls.builtins.formatting.eslint_d)
+  table.insert(null_ls_sources, null_ls.builtins.diagnostics.eslint_d)
+  table.insert(null_ls_sources, null_ls.builtins.code_actions.eslint_d)
+end
+
+if vim.fn.executable("gofmt") == 1 then
+  table.insert(null_ls_sources, null_ls.builtins.formatting.gofmt)
+end
+
+if vim.fn.executable("shellcheck") == 1 then
+  table.insert(null_ls_sources, null_ls.builtins.diagnostics.shellcheck)
+  table.insert(null_ls_sources, null_ls.builtins.code_actions.shellcheck)
+end
+
+if vim.fn.executable("deno") == 1 then
+  nvim_lsp.denols.setup({
+    capabilities = require('cmp_nvim_lsp').update_capabilities(vim.lsp.protocol.make_client_capabilities()),
+    on_attach = on_attach,
+  });
+  table.insert(null_ls_sources, null_ls.builtins.formatting.deno_fmt);
+end
+
+if vim.fn.executable("node_modules/.bin/tsc") == 1 then
+  local ts_utils = require("nvim-lsp-ts-utils")
+  ts_utils.setup({
+    debug = false,
+    disable_commands = false,
+    enable_import_on_completion = true,
+
+    -- import all
+    import_all_timeout = 5000, -- ms
+    -- lower numbers = higher priority
+    import_all_priorities = {
+        same_file = 1, -- add to existing import statement
+        local_files = 2, -- git files or files with relative path markers
+        buffer_content = 3, -- loaded buffer content
+        buffers = 4, -- loaded buffer names
+    },
+    import_all_scan_buffers = 100,
+    import_all_select_source = false,
+
+    -- filter diagnostics
+    filter_out_diagnostics_by_severity = {},
+    filter_out_diagnostics_by_code = {},
+
+    -- inlay hints
+    auto_inlay_hints = true,
+    inlay_hints_highlight = "Comment",
+
+    -- update imports on file move
+    update_imports_on_move = false,
+    require_confirmation_on_move = false,
+    watch_dir = nil,
+  })
+
+  nvim_lsp.tsserver.setup({
+    init_options = ts_utils.init_options,
+    capabilities = require('cmp_nvim_lsp').update_capabilities(vim.lsp.protocol.make_client_capabilities()),
+    flags = {
+      debounce_text_changes = 150,
+    },
+    on_attach = function(client, bufnr)
+      client.resolved_capabilities.document_formatting = false
+      client.resolved_capabilities.document_range_formatting = false
+
+      on_attach(client, bufnr)
+
+      -- required to fix code action ranges and filter diagnostics
+      ts_utils.setup_client(client)
+    end,
+  })
+end
+
+null_ls.setup({
+  sources = null_ls_sources,
+
+  on_attach = function(client, bufnr)
+    if client.resolved_capabilities.document_formatting then
+      vim.cmd([[
+      augroup LspFormatting
+        autocmd! * <buffer>
+        autocmd BufWritePre <buffer> lua vim.lsp.buf.formatting_sync()
+      augroup END
+      ]])
+    end
+    on_attach(client, bufnr)
+  end,
+});
+
+-- Setup nvim-cmp.
+local cmp = require'cmp'
+
+cmp.setup({
+  completion = {
+    autocomplete = false,
+  },
+  snippet = {
+    expand = function(args)
+      vim.fn["vsnip#anonymous"](args.body)
+    end,
+  },
+  mapping = {
+    ['<C-d>'] = cmp.mapping.scroll_docs(-4),
+    ['<C-f>'] = cmp.mapping.scroll_docs(4),
+    ['<C-Space>'] = cmp.mapping.complete(),
+    ['<C-e>'] = cmp.mapping.close(),
+    ['<CR>'] = cmp.mapping.confirm({ select = true }),
+  },
+  sources = {
+    { name = 'nvim_lsp' },
+    { name = 'vsnip' },
+    { name = 'buffer' },
+  }
+})

+ 132 - 0
.config/nixpkgs/neovim/vimrc

@@ -0,0 +1,132 @@
+" ----- plugin settings ------
+let g:signify_vcs_list = [ 'git' ]
+
+let g:lightline = {
+      \ 'colorscheme': 'wombat',
+      \ 'active': {
+      \   'left': [ [ 'mode', 'paste' ],
+      \             [ 'gitbranch', 'readonly', 'filename', 'modified' ] ]
+      \ },
+      \ 'component_function': {
+      \   'gitbranch': 'fugitive#head'
+      \ },
+      \ }
+
+" ------ settings ------
+
+" change terminal title
+set title
+
+" xdg-ish settings
+set undodir=~/.cache/vim/undo,.
+set backupdir=~/.cache/vim/backup,.
+set directory=~/.cache/vim/swap//,.
+
+" default indentation
+set shiftwidth=2
+set tabstop=4
+set expandtab
+
+" permanent undo history
+set undofile
+
+" allow switching buffers
+set hidden
+
+" always scroll
+set scrolloff=99
+
+" show line numbers
+set number
+set relativenumber
+
+" show gutter
+set signcolumn=yes
+
+" set wordwrap indent
+set nowrap
+set linebreak
+if exists("&breakindent")
+  set breakindent
+  set breakindentopt=shift:2,sbr
+endif
+
+" show whitespace
+set list
+
+" make a new copy of the file for backup
+" setting to no or auto messes with filewatchers
+set backupcopy=yes
+
+" disable modelines
+set nomodeline
+
+" ------ key bindings ------
+
+" ; as :
+nnoremap ; :
+vnoremap ; :
+
+" allow <ESC> via jj in insert mode
+inoremap jj <ESC>
+
+" tab switching
+nnoremap <C-T>h :tabprev<cr>
+nnoremap <C-T>l :tabnext<cr>
+
+" fix j/k with wraps
+nnoremap j gj
+nnoremap k gk
+vnoremap j gj
+vnoremap k gk
+
+" cursor display
+nnoremap <Leader>c :set cursorline! cursorcolumn!<CR>
+
+" fzf
+nnoremap <C-P> :GitFiles -o -c --exclude-standard<CR>
+nnoremap <C-O> :Buffers<CR>
+if executable('rg')
+  nnoremap <Leader>f :Rg<SPACE>
+elseif executable('ag')
+  nnoremap <Leader>f :Ag<SPACE>
+endif
+
+" git
+nnoremap <Leader>gs :Git status<CR>
+nnoremap <Leader>gb :Merginal<CR>
+
+" undo tree
+nnoremap <Leader>ut :GundoToggle<CR>
+
+" vimrc
+nnoremap <Leader>ve :vsplit $MYVIMRC<CR>
+nnoremap <Leader>vs :source $MYVIMRC<CR>
+
+" ------ nvim specific ------
+if has('nvim')
+  set inccommand=split
+  tnoremap <C-[><C-[> <C-\><C-N>
+  autocmd TermOpen * setlocal scrollback=10000 nonumber norelativenumber
+  autocmd TermOpen * startinsert
+  autocmd FileType fzf tnoremap <buffer> jj <ESC>
+  autocmd BufWinEnter,WinEnter term://* startinsert
+  autocmd BufLeave term://* stopinsert
+
+  " fix flickering when clearing terminal
+  autocmd TermEnter * setlocal scrolloff=0
+  autocmd TermLeave * setlocal scrolloff=99
+
+  nnoremap <Leader>tv :vsp term://$SHELL<CR>
+  nnoremap <Leader>to :term<CR>
+endif
+
+augroup formatting
+  au!
+  " strip trailing whitespace
+  autocmd BufWritePre * :%s/\s\+$//e
+  autocmd FileType markdown :set tw=80
+augroup end
+
+colorscheme seti
+highlight link FloatBorder NonText