summaryrefslogtreecommitdiffstats
path: root/modules/editor
diff options
context:
space:
mode:
Diffstat (limited to 'modules/editor')
-rw-r--r--modules/editor/default.nix3
-rw-r--r--modules/editor/neovim/default.nix14
-rw-r--r--modules/editor/neovim/init.lua14
-rw-r--r--modules/editor/neovim/init.vim71
-rw-r--r--modules/editor/neovim/plugins.lua57
5 files changed, 0 insertions, 159 deletions
diff --git a/modules/editor/default.nix b/modules/editor/default.nix
deleted file mode 100644
index f8cdc22..0000000
--- a/modules/editor/default.nix
+++ /dev/null
@@ -1,3 +0,0 @@
-[
- ./neovim
-]
diff --git a/modules/editor/neovim/default.nix b/modules/editor/neovim/default.nix
deleted file mode 100644
index c5cf990..0000000
--- a/modules/editor/neovim/default.nix
+++ /dev/null
@@ -1,14 +0,0 @@
-{ config, lib, pkgs, user, ... }:
-{
- config.home-manager.users.${user} = {
- xdg.configFile."nvim/init.vim".source = ./init.vim;
- xdg.configFile."nvim/lua/init.lua".source = ./init.lua;
- xdg.configFile."nvim/lua/plugins.lua".source = ./plugins.lua;
-
- programs.neovim = {
- enable = true;
- defaultEditor = true;
- withNodeJs = true;
- };
- };
-}
diff --git a/modules/editor/neovim/init.lua b/modules/editor/neovim/init.lua
deleted file mode 100644
index 4a80830..0000000
--- a/modules/editor/neovim/init.lua
+++ /dev/null
@@ -1,14 +0,0 @@
-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",
- lazypath
- })
-end
-vim.opt.rtp:prepend(lazypath)
-
-require("lazy").setup("plugins")
diff --git a/modules/editor/neovim/init.vim b/modules/editor/neovim/init.vim
deleted file mode 100644
index 993ea88..0000000
--- a/modules/editor/neovim/init.vim
+++ /dev/null
@@ -1,71 +0,0 @@
-set termguicolors
-
-filetype plugin indent on
-set tabstop=4 softtabstop=4 shiftwidth=4
-set expandtab smarttab
-set autoindent
-set incsearch ignorecase smartcase hlsearch
-set encoding=utf-8
-set textwidth=0
-set number
-
-set hidden
-set title
-set noshowmode
-set noruler
-set noshowcmd
-
-set nobackup
-set nowritebackup
-
-set updatetime=300
-set signcolumn=yes
-
-let mapleader = "\<Space>"
-
-" Tab-trigger completion
-inoremap <silent><expr> <Tab>
- \ coc#pum#visible() ? coc#pum#next(1) :
- \ CheckBackspace() ? "\<Tab>" :
- \ coc#refresh()
-inoremap <expr><S-Tab> coc#pum#visible() ? coc#pum#prev(1) : "\<C-h>"
-
-inoremap <silent><expr> <CR> coc#pum#visible() ? coc#pum#confirm() :
- \ "\<C-g>u\<CR>\<c-r>=coc#on_enter()\<CR>"
-
-function! CheckBackspace() abort
- let col = col('.') - 1
- return !col || getline('.')[col - 1] =~# '\s'
-endfunction
-
-inoremap <silent><expr> <c-space> coc#refresh()
-
-nmap <silent> [g <Plug>(coc-diagnostic-prev)
-nmap <silent> ]g <Plug>(coc-diagnostic-next)
-
-nmap <silent> gd <Plug>(coc-definition)
-nmap <silent> gy <Plug>(coc-type-definition)
-nmap <silent> gi <Plug>(coc-implementation)
-nmap <silent> gr <Plug>(coc-references)
-
-nnoremap <silent> K :call ShowDocumentation()<CR>
-
-function! ShowDocumentation()
- if CocAction('hasProvider', 'hover')
- call CocActionAsync('doHover')
- else
- call feedkeys('K', 'in')
- endif
-endfunction
-
-autocmd CursorHold * silent call CocActionAsync('highlight')
-
-" Telescope
-nnoremap <leader>ff <cmd>Telescope find_files<cr>
-nnoremap <leader>fg <cmd>Telescope live_grep<cr>
-nnoremap <leader>fb <cmd>Telescope buffers<cr>
-nnoremap <leader>fh help_tags<cr>
-
-lua require('init')
-
-color catppuccin
diff --git a/modules/editor/neovim/plugins.lua b/modules/editor/neovim/plugins.lua
deleted file mode 100644
index 83c74ad..0000000
--- a/modules/editor/neovim/plugins.lua
+++ /dev/null
@@ -1,57 +0,0 @@
-return
-{
- { "neovim/nvim-lspconfig" },
- { "MordechaiHadad/nvim-lspmanager",
- dependencies = { "neovim/nvim-lspconfig" },
- config = function()
- require('lspmanager').setup({
- ensure_installed = {
- "clangd"
- }
- })
- end
- },
- { "nvim-treesitter/nvim-treesitter",
- build = ":TSUpdate",
- config = function()
- require('nvim-treesitter.configs').setup{
- ensure_installed = { "c", "cpp" },
- auto_install = true,
- highlight = {
- enable = true
- }
- }
- end
- },
- { "neoclide/coc.nvim", branch="release" },
- { "nvim-lua/plenary.nvim" },
- { "nvim-telescope/telescope.nvim", tag = '0.1.3',
- dependencies = { 'nvim-lua/plenary.nvim' }
- },
- { "nvim-tree/nvim-web-devicons" },
- { "lewis6991/gitsigns.nvim",
- config = function()
- require('gitsigns').setup()
- end
- },
- { "tpope/vim-surround" },
- { "catppuccin/nvim", name="catppuccin", priority=1000 },
- { "feline-nvim/feline.nvim",
- config = function()
- local ctp_feline = require('catppuccin.groups.integrations.feline')
- require('feline').setup({
-
- })
- end
- },
- { "romgrk/barbar.nvim",
- dependencies = {
- 'lewis6991/gitsigns.nvim',
- 'nvim-tree/nvim-web-devicons'
- },
- init = function() vim.g.barbar_auto_setup = false end,
- config = function()
- require('barbar').setup()
- end
- }
-}