]> git.armaanb.net Git - dotfiles.git/commitdiff
nvim: simplify config
authorArmaan Bhojwani <me@armaanb.net>
Mon, 29 Nov 2021 02:44:55 +0000 (21:44 -0500)
committerArmaan Bhojwani <me@armaanb.net>
Mon, 29 Nov 2021 02:44:55 +0000 (21:44 -0500)
.config/nvim/init.lua

index ba9dbf4d5652a97eddf0861ed804511d5c63fce6..1e0bd76000d4b56a7e091b23058070554f77d25a 100644 (file)
@@ -1,3 +1,5 @@
+require('impatient')
+
 local map = vim.api.nvim_set_keymap
 local opts = { noremap=true, silent=true }
 
@@ -10,31 +12,23 @@ 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('impatient')
-
 require('paq') {
        '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
-       'junegunn/fzf';                   -- Fuzzy file finding
-       'junegunn/fzf.vim';               -- Fuzzy file finding
        'lewis6991/impatient.nvim';       -- Improve startup time
-       'lifepillar/vim-mucomplete';      -- Simple autocompletion
+       '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
-       'norcalli/nvim_utils';            -- Lua conveniences
        'ntpeters/vim-better-whitespace'; -- Highlight and strip whitespace
-       'nvim-treesitter/nvim-treesitter';-- Parsing
-       'romgrk/nvim-treesitter-context'; -- Shows context for where you are
        'savq/paq-nvim';                  -- paq manages itself
        'tpope/vim-commentary';           -- Easily comment
        'tpope/vim-rsi';                  -- Readline bindings
@@ -43,11 +37,9 @@ require('paq') {
        'tpope/vim-surround';             -- Easily modify surrounding chars
 }
 
-require('nvim_utils')
-
 -- 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)
@@ -58,10 +50,6 @@ map('n', '<C-l>', '<C-w><C-l>', opts)
 -- Clear search highlighting
 map('n', '<C-c>', ':noh<CR>', opts)
 
--- FZF
-map('n', '<leader>ff', ':Files<CR>', opts)
--- TODO: Sharp corners... I can't figure this out
-
 -- Disable keyword completion
 map('i', '<C-n>', '<Down>', opts)
 map('i', '<C-p>', '<Up>', opts)
@@ -105,7 +93,8 @@ end
 
 -- Add servers
 local servers = {
-       'clangd'
+       'clangd',
+       'racket_langserver',
 }
 
 for _, server in ipairs(servers) do
@@ -119,45 +108,15 @@ vim.opt.hidden = true
 vim.opt.path = vim.opt.path + '**'
 
 -- Disable intro message
-vim.opt.shortmess = "I"
-
--- Treesitter
-require('nvim-treesitter.configs').setup {
-       ensure_installed = "maintained",
-       highlight = {
-               enable = true,
-               additional_vim_regex_highlighting = false,
-       },
-       incremental_selection = {
-               enable = true,
-               keymaps = {
-                       init_selection = "gnn",
-                       node_incremental = "grn",
-                       scope_incremental = "grc",
-                       node_decremental = "grm",
-               },
-       },
-       indent = {
-               enable = true
-       }
-}
-
--- Folds
-vim.opt.foldmethod = 'expr'
-vim.opt.foldexpr = 'nvim_treesitter#foldexpr()'
-vim.opt.foldenable = false
-map('n', '<leader>fe', ':set foldenable<CR>', opts)
-map('n', '<leader>fd', ':set nofoldenable<CR>', opts)
-
--- Autocommands
-local autocommands = {
-       highlight_yank = {
-               {'TextYankPost', '*',
-                       'lua vim.highlight.on_yank{on_visual=false}'};
-       };
-}
-
-nvim_create_augroups(autocommands)
+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