samueljoli / lakay

Nix flake to manage developer environment packages and configuration files.
0 stars 0 forks source link

Rebuilding nvim config #3

Open samueljoli opened 10 months ago

samueljoli commented 10 months ago

File and directory management

Fuzzy searching

LSP

Refactoring

// in /components/toast.ts import { api } from '../utils' // <= this file path should automatically be updated

- drop object that is inline to collapsed
before:
```ts
  const thing = [
    { id: 4084, name: 'Scenario 1', description: 'some-desc', color: 'some-color', as_of_date: 'as_of_date' },
  ];

after:

  const thing = [
    {
      id: 4084,
      name: 'Scenario 1',
      description: 'some-desc',
      color: 'some-color',
      as_of_date: 'as_of_date'
    },
  ];

Coding

Window management

Toys