]> git.armaanb.net Git - dotfiles.git/blobdiff - .config/nvim/init.lua
nvim: simplify config
[dotfiles.git] / .config / nvim / init.lua
index 7f78c31696b9c466505fcc9b4abd080decde2d69..1e0bd76000d4b56a7e091b23058070554f77d25a 100644 (file)
@@ -1,3 +1,5 @@
+require('impatient')
+
 local map = vim.api.nvim_set_keymap
 local opts = { noremap=true, silent=true }
 
@@ -6,29 +8,28 @@ vim.opt.mouse = 'a'
 vim.opt.undofile = true
 vim.opt.textwidth = 80
 map('', 'Q', '<nop>', opts)
-
--- Polyglot
-vim.g.polyglot_disabled = {'sensible'}
+vim.g.mapleader = ' '
 
 -- Plugins
 local install_path = vim.fn.stdpath('data') .. '/site/pack/paqs/start/paq-nvim'
-
 if vim.fn.empty(vim.fn.glob(install_path)) > 0 then
        vim.fn.system({'git', 'clone', '--depth=1',
-               'https://github.com/savq/paq-nvim.git', install_path})
+       'https://github.com/savq/paq-nvim.git', install_path})
 end
 
 require('paq') {
-       'ap/vim-css-color';               -- Highlight css colors
-       'ctrlpvim/ctrlp.vim';             -- Fuzzy file finding
+       'dstein64/vim-startuptime';       -- Profile startup time
        'editorconfig/editorconfig-vim';  -- Follow editorconfig
+       'folke/lsp-colors.nvim';          -- Add LSP colors to any theme
        'godlygeek/tabular';              -- Line things up
-       'lifepillar/vim-mucomplete';      -- Simple autocompletion
+       'lewis6991/impatient.nvim';       -- Improve startup time
+       'lifepillar/vim-mucomplete';      -- Simple completion
        'meain/hima-vim';                 -- Nice color scheme
+       'nathom/filetype.nvim';           -- Faster filetype.vim replacement
        'neovim/nvim-lspconfig';          -- LSP configurations
+       'norcalli/nvim-colorizer.lua';    -- Highlight css colors
        'ntpeters/vim-better-whitespace'; -- Highlight and strip whitespace
        'savq/paq-nvim';                  -- paq manages itself
-       'sheerun/vim-polyglot';           -- Language pack
        'tpope/vim-commentary';           -- Easily comment
        'tpope/vim-rsi';                  -- Readline bindings
        'tpope/vim-sensible';             -- Sensible defaults
@@ -38,7 +39,7 @@ require('paq') {
 
 -- Colorscheme
 vim.opt.termguicolors = true
-vim.g.colors_name = 'hima'
+vim.g.colors_name = 'hima-plain'
 
 -- Easier split movement
 map('n', '<C-h>', '<C-w><C-h>', opts)
@@ -49,6 +50,10 @@ map('n', '<C-l>', '<C-w><C-l>', opts)
 -- Clear search highlighting
 map('n', '<C-c>', ':noh<CR>', opts)
 
+-- Disable keyword completion
+map('i', '<C-n>', '<Down>', opts)
+map('i', '<C-p>', '<Up>', opts)
+
 -- Completion
 vim.opt.completeopt = vim.opt.completeopt + 'menuone'
 vim.opt.completeopt = vim.opt.completeopt - 'preview'
@@ -76,17 +81,20 @@ local on_attach = function(client, bufnr)
                '<cmd>lua vim.lsp.buf.references()<CR>', opts)
        buf_set_keymap('n', 'K',
                '<cmd>lua vim.lsp.buf.hover()<CR>', opts)
-       buf_set_keymap('n', '<space>rn',
+       buf_set_keymap('n', '<leader>rn',
                '<cmd>lua vim.lsp.buf.rename()<CR>', opts)
        buf_set_keymap('n', '[d',
                '<cmd>lua vim.lsp.diagnostic.goto_prev()<CR>', opts)
        buf_set_keymap('n', ']d',
                '<cmd>lua vim.lsp.diagnostic.goto_next()<CR>', opts)
+       buf_set_keymap('n', '<leader>e',
+               '<cmd>lua vim.lsp.diagnostic.show_line_diagnostics()<CR>', opts)
 end
 
 -- Add servers
 local servers = {
-       'clangd'
+       'clangd',
+       'racket_langserver',
 }
 
 for _, server in ipairs(servers) do
@@ -98,3 +106,17 @@ vim.opt.signcolumn = 'no'
 -- Jump to files with gf
 vim.opt.hidden = true
 vim.opt.path = vim.opt.path + '**'
+
+-- Disable intro message
+vim.opt.shortmess = vim.opt.shortmess + 'I'
+
+-- Highlight on yank
+vim.cmd([[
+augroup highlight_yank
+    autocmd!
+    au TextYankPost * silent! lua vim.highlight.on_yank{timeout=200}
+augroup END
+]])
+
+-- Do not source the default filetype.vim (uses nathom/filetype.nvim instead)
+vim.g.did_load_filetypes = 1